aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.am
Commit message (Collapse)AuthorAge
...
* Merge branch master into v3.0.0-beta-2Gravatar Feng Xiao2015-12-21
|\
| * Drop all use of OSSpinLockGravatar Thomas Van Lenten2015-12-17
| | | | | | | | | | | | | | | | | | | | | | | | | | Apple engineers have pointed out that OSSpinLocks are vulnerable to live locking on iOS in cases of priority inversion: . http://mjtsai.com/blog/2015/12/16/osspinlock-is-unsafe/ . https://lists.swift.org/pipermail/swift-dev/Week-of-Mon-20151214/000372.html - Use a dispatch_semaphore_t within the extension registry. - Use a dispatch_semaphore_t for protecting autocreation within messages. - Drop the custom/internal GPBString class since we don't have really good numbers to judge the locking replacements and it isn't required. We can always bring it back with real data in the future.
* | Add new files to Makefile.amGravatar Feng Xiao2015-12-14
| |
* | Down-integrate from internal code base.Gravatar Feng Xiao2015-12-11
|/
* Fix dist_clean and maintainer-clean to get more generated files.Gravatar Thomas Van Lenten2015-12-10
|
* Merge pull request #944 from jskeet/umbrella-classnameGravatar Jon Skeet2015-11-19
|\ | | | | Change the way the "umbrella class" (descriptors) is named/namespaced
* | Cleanups of deps and ignores for conformanceGravatar Thomas Van Lenten2015-11-16
| | | | | | | | | | | | - Hopefully complete the deps for other languages for the generated conformance proto sources. - List the generated sources for cleanup by make's clean rules. - Make the toplevel nuke the pyc files that can get created in the ObjC dir.
| * Generated code changes and manual changes for previous commit.Gravatar Jon Skeet2015-11-09
|/
* Created a new exception for JSON failures.Gravatar Jon Skeet2015-11-05
| | | | | | This is only thrown directly by JsonTokenizer, but surfaces from JsonParser as well. I've added doc comments to hopefully make everything clear. The exception is actually thrown by the reader within JsonTokenizer, in anticipation of keeping track of the location within the document, but that change is not within this PR.
* Implement JSON parsing in C#.Gravatar Jon Skeet2015-11-03
| | | | | | | | | | This includes all the well-known types except Any. Some aspects are likely to require further work when the details of the JSON parsing expectations are hammered out in more detail. Some of these have "ignored" tests already. Note that the choice *not* to use Json.NET was made for two reasons: - Going from 0 dependencies to 1 dependency is a big hit, and there's not much benefit here - Json.NET parses more leniently than we'd want; accommodating that would be nearly as much work as writing the tokenizer This only really affects the JsonTokenizer, which could be replaced by Json.NET. The JsonParser code would be about the same length with Json.NET... but I wouldn't be as confident in it.
* Merge remote-tracking branch 'origin/master' into fix-authorGravatar Jisi Liu2015-10-05
|\
* | Down-integrate from google internal.Gravatar Jisi Liu2015-10-05
| |
| * Support enum forward decls in Objective C++Gravatar Thomas Van Lenten2015-10-01
| | | | | | | | | | | | NS_ENUM changes defintion in Objective C++ based on the C++ spec being compiled with, special case the one situation where it wouldn't support doing a forward decl for the enum.
| * Pack/Unpack implementation for Any.Gravatar Jon Skeet2015-09-04
|/ | | | | We still need the JSON representation, which relies on something like a DescriptorPool to fetch message types from based on the type URL. That will come a bit later. (The DescriptorPool comment in this commit is just a note which will prove useful if we use DescriptorPool itself.)
* Fix merge conflict.Gravatar Feng Xiao2015-08-26
|
* Merge pull request #756 from TeBoring/beta-1Gravatar Feng Xiao2015-08-26
|\ | | | | Add distribution for objc
* \ Update Makefile.am to include missing files.Gravatar Feng Xiao2015-08-26
|\ \
| * | Add missing files in dist.Gravatar Feng Xiao2015-08-26
| | |
| | * Add distribution for objcGravatar Bo Yang2015-08-26
| | |
* | | Add bazel build/workspace into distribution.Gravatar Jisi Liu2015-08-26
| |/ |/| | | | | Change-Id: I96fbe5c84a04f5d95c5484002404fc975f2abd21
* | Merge remote-tracking branch 'origin/master' into beta-1Gravatar Feng Xiao2015-08-25
|\|
* | Fix bugs on windowsGravatar Bo Yang2015-08-25
| |
| * Remove ez_setup.py from Makefile.amGravatar Dan O'Reilly2015-08-20
|/ | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Remove a redundant layer of directory hierarchy.Gravatar Jon Skeet2015-08-03
|
* Update Makefile.amGravatar Jan Tattermusch2015-08-02
|
* Rename ThrowHelper to Preconditions and make it public - we'll want to use ↵Gravatar Jon Skeet2015-07-30
| | | | | | | it from the generated code soon. Additionally, change it to return the value passed, and make it generic with a class constraint. A separate method doesn't have the class constraint, for more unusual scenarios.
* remove the freeze APIGravatar Jan Tattermusch2015-07-29
|
* Fix typo in Makefile.amGravatar Jon Skeet2015-07-22
|
* Fix file lists for C#Gravatar Jon Skeet2015-07-22
|
* Updated csharp_EXTRA_DIST for TravisGravatar Jon Skeet2015-07-17
|
* updated csharp_EXTRA_DISTGravatar Jan Tattermusch2015-07-16
|
* Fix distcheck.Gravatar Jisi Liu2015-06-18
| | | | Change-Id: I74e2d5958b5e7b15d10e5a6468bca917323b9739
* Merge pull request #501 from xfxyjwf/downGravatar Feng Xiao2015-06-17
|\ | | | | Down-integrate from internal code base.
* | Make the code independent of config.hGravatar Jisi Liu2015-06-16
| | | | | | | | | | | | | | | | | | | | | | | | | | Now the Build tool needs to define -DHAVE_ZLIB and -DHAVE-PTHREAD rather than providing a config.h - Make pbconfig.h a manually written file to handle hash conditions according to platform related macros. - Remove #include "config.h" from source code. - Changed the configure.ac and Makefile.am to pass down the macros. - Change cmake to pass down the the macros. Change-Id: I537249d5df8fdeba189706aec436d1ab1104a4dc
| * Down-integrate from internal code base.Gravatar Feng Xiao2015-06-15
|/ | | | | | [ci skip] Change-Id: I9391c09640e0b0b2b21c45a97a1fc91814d95c5d
* Remove the file from Makefile.amGravatar Jisi Liu2015-06-13
| | | | Change-Id: I2015df2409aa95401af658b40023c8f9b9d75068
* Update podspec for files that can build now, rename assets to not need @ in ↵Gravatar Thomas Van Lenten2015-06-10
| | | | the name.
* Merge pull request #480 from thomasvl/objc_beta_dropGravatar Paul Yang2015-06-09
|\ | | | | Beta quality drop of Objective C Support.
| * Beta quality drop of Objective C Support.Gravatar Thomas Van Lenten2015-06-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add more to the ObjC dir readme. - Merge the ExtensionField and ExtensionDescriptor to reduce overhead. - Fix an initialization race. - Clean up the Xcode schemes. - Remove the class/enum filter. - Remove some forced inline that were bloating things without proof of performance wins. - Rename some internal types to avoid conflicts with the well know types protos. - Drop the use of ApplyFunctions to the compiler/optimizer can do what it wants. - Better document some possible future improvements. - Add missing support for parsing repeated primitive fields in packed or unpacked forms. - Improve -hash. - Add *Count for repeated and map<> fields to avoid auto create when checking for them being set.
* | Remove vsprojects.Gravatar Feng Xiao2015-06-05
|/
* Add new files to Makefile.amGravatar Bo Yang2015-05-25
|
* Add csharp_EXTRA_DIST to all_EXTRA_DIST.Gravatar Bo Yang2015-05-25
|
* Add new files for java runtime to Makefile.amGravatar TeBoring2015-05-25
|
* Add csharp files to Makefile.amGravatar Bo Yang2015-05-25
|
* Add objectivec/generate_descriptors_proto.sh in Makefile.amGravatar Bo Yang2015-05-25
|
* Remove useless slash in Makefile.amGravatar TeBoring2015-05-25
|
* Fix bugs in objective-c.Gravatar Bo Yang2015-05-25
|
* Merge pull request #410 from thomasvl/objc_alpha2_dropGravatar Paul Yang2015-05-22
|\ | | | | Objective C Second Alpha Drop
| * Objective C Second Alpha DropGravatar Thomas Van Lenten2015-05-22
| | | | | | | | | | | | | | | | | | | | - Style fixups in the code. - map<> serialization fixes and more tests. - Autocreation of map<> fields (to match repeated fields). - @@protoc_insertion_point(global_scope|imports). - Fixup proto2 syntax extension support. - Move all startup code to +initialize so it happen on class usage and not app startup. - Have generated headers use forward declarations and move imports into generated code, reduces what is need at compile time to speed up compiled and avoid pointless rippling of rebuilds.
* | down-integrate internal changesGravatar Bo Yang2015-05-21
| |