aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* Remove the iOS Test App.Thomas Van Lenten2018-04-201-19/+0
| | | | | | The tests can run as what Apple calls a Logic Test (under xctest), which means it doesn't have to load an full UI App under the simulator, which speeds things up a fair amount.
* Update Makefile.am for Java lite files.Feng Xiao2018-04-181-3/+1
|
* Add __init__.py files to compiler and util subpackages (#4117)Thomas Hisch2018-04-091-0/+2
| | | | | | The compiler and util subpackages are created by the build_py class in setup.py. This has caused an issue in the protobuf package in conda-forge (https://github.com/conda-forge/protobuf-feedstock/issues/40), which is fixed by this commit.
* Add the files added in #4485.Thomas Van Lenten2018-04-061-0/+2
|
* Merge pull request #4283 from ObsidianMinor/csharp/better-test-runnersFeng Xiao2018-04-041-1/+0
|\ | | | | [C#] Update test project to be used with dotnet test and Visual Studio Test Explorer
| * Remove Google.Protobuf.Test/Program.cs from Makefile.amObsidianMinor2018-02-061-1/+0
| |
* | Add compile test sources for to test include order.Thomas Van Lenten2018-04-021-0/+25
| | | | | | | | | | | | | | | | | | | | | | To ensure all headers aren't dependent on other things being imported before/after them, make a source that just imports each header and add it to the unittesting target, that way we ensure it can be included on its own with ordering issues. Also do this testing with a few generated headers that aren't part of the library to help ensure the different generated imports needed are complete.
* | Add extra C# file to Makefile.amJon Skeet2018-03-271-0/+1
| |
* | Include googletest as a submodule (#3993)Carlos O'Ryan2018-03-261-8/+7
| | | | | | Add googletest as a submodule in third_party/googletest.
* | Remove javanano.Feng Xiao2018-03-261-40/+1
| |
* | Added map_lite_test.proto to fix LiteTestAdam Cozzette2018-03-201-0/+1
| |
* | Added pyext/thread_unsafe_shared_ptr.hAdam Cozzette2018-03-201-0/+1
| |
* | Include no_package.proto in Python testAdam Cozzette2018-03-141-0/+1
|/
* Merge remote-tracking branch 'origin/3.5.x' into masterJisi Liu2018-01-031-0/+1
|\
| * Cherrypick for csharp, including:Jie Luo2017-12-191-1/+13
| | | | | | | | | | | | Add preserve UnknownFields Compare floating point values bitwise Add auto-generated header to C# generated files
| * Add discard unknown API in ruby. (#3990)Paul Yang2017-12-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | * Add discard unknown API in ruby. * Add test for oneof message field. * Add TestUnknown to represent unknown field data clearly. * Only serialize the message with unknown fields itself in test. * Move discard_unknown from Message to Google.Protobuf
* | Add unknown field support for csharp (#3936)Jie Luo2017-12-131-1/+5
| | | | | | Add unknown field support for csharp
* | Compare floating point values bitwise in C#Jon Skeet2017-12-091-0/+3
| | | | | | | | | | This is the manual code part of the Google.Protobuf library, and tests. Some tests will fail until codegen is changed and rerun.
* | Updated Makefile.am to add a new file to EXTRA_DISTAdam Cozzette2017-12-011-0/+1
| |
* | Add a UTF-8 decoder that uses Unsafe to directly decode a byte buffer.Anuraag Agrawal2017-11-291-0/+1
| |
* | Fix up warnings from Xcode 9.1 (#3887)dmaclach2017-11-161-9/+14
| | | | | | | | Fix up warnings from Xcode 9.1
* | Move C#-only test protos to csharp/protosJon Skeet2017-11-121-0/+5
|/ | | | | | | | | | unittest_proto3 had been changed in a very backward-incompatible way which was never going to work with C# as it imports proto2 messages. This is now a copy of the old file, but with a package name change for compatibility with the remaining files in src/google/protobuf. The other moves are for files that are only used by C#.
* Merge remote-tracking branch 'origin/3.4.x' into masterJisi Liu2017-10-251-0/+1
|\
| * Merge pull request #3578 from pherl/filedeprecationJisi Liu2017-10-181-0/+1
| |\ | | | | | | Add @Deprecated annotation support for proto file.
| | * Fix dist checkJisi Liu2017-08-311-0/+1
| | |
* | | Fix distcheckJisi Liu2017-10-111-0/+1
| | |
* | | Merge remote-tracking branch 'origin/3.4.x' into masterJisi Liu2017-10-111-0/+11
|\| |
| * | Exclude valid constant name from reserved name.Bo Yang2017-09-121-0/+2
| | |
| * | Add prefix to php reserved keywords.Bo Yang2017-09-081-0/+4
| | |
| * | change the field number of php_generic_service to fix the conflict with (#3576)Paul Yang2017-08-301-0/+1
| |/ | | | | internal descriptor.proto
| * Add mising cmake files in distJisi Liu2017-08-241-0/+2
| |
* | Add well known types to php runtime. (#3697)Paul Yang2017-10-051-42/+76
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add well known types to php runtime. * Fix php7.0 tests * No longer generate empty.proto in test as it has been included in runtime. * Fix zts build * Clean code * Rename g_p_b_empty to empty. * Don't generate code for empty.proto in compatibility test * Fix 32-bit * Fix mac build * Fix Makefile.am to add new files
* | Fix ruby segment fault (#3708)Paul Yang2017-10-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix ruby segment fault 1) rb_ary_new cannot be called during allocate function. During allocate fucntion, the containing object hasn't been marked and rb_ary_new may invoke gc to collect containing object. 2) The global map should be marked before allocating it. Otherwise it may be garbage collected. * Add test * Remove commented code * Fix grammer error
* | Enforce all error report for php tests. (#3670)Paul Yang2017-09-221-0/+1
| | | | | | | | | | | | * Enforce all error report for php tests. * Import vendor/autoload.php in tests/bootstrap_phpunit.php
* | Integrated internal changes from GoogleAdam Cozzette2017-09-141-0/+1
| |
* | Update examples file list.Feng Xiao2017-09-111-6/+7
| |
* | Add native php support for Duration. (#3583)Paul Yang2017-09-051-0/+2
| |
* | Add php support for Timestamp. (#3575)Paul Yang2017-08-311-0/+2
| | | | | | | | | | | | * Add php support for Timestamp. * Fix comments
* | Add any support in php runtime. (#3486)Paul Yang2017-08-251-0/+2
|/ | | | | | | | | | | | * Add any support in php runtime. * Remove unused file in config.m4 * Fix comments * Fix error for tsrmls build * Add newly added file to Makefile.am
* Merge branch 'master' into 3.4.xBo Yang2017-08-051-1/+10
|\
| * Update PHP descriptors (#3391)michaelbausor2017-08-041-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add descriptors test * Update descriptors tests * Add public descriptors * Add test_desriptors.proto to test script * Update composer files * Remove references to GPBType, update tests to be compatible with c * Update for c extension compatibility * Remove nested enums for descriptor, update tests * Strip leading '.' from descriptor name * Update tests with test for getClass, fix OneofDescriptor * Add new files to Makefile.am
| * Expose descriptor API in php c extension (#3422)Paul Yang2017-08-021-0/+2
| |
* | Add lite and python extra_dist filesJisi Liu2017-07-191-0/+4
| |
* | Add java and JS dist files.Jisi Liu2017-07-191-0/+23
| |
* | Merge master into 3.4.xJisi Liu2017-07-181-52/+71
|\|
| * Support PHP generic services (#3269)Matt A2017-07-181-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add php_generic_services option * Generate PHP generic services * Respect namespaces for generated PHP services * Test PHP generated services * Rename PHP generator service method doc comment function * Correct phpdoc service method case * Test namespaced PHP generic services * Always use the FQCN for PHP generic service input/output * Add generated_service_test to php test.sh * Add php service test protos to CI * Add php service files to php_EXTRA_DIST * Use Interface suffix for php generic services
| * Add json encode/decode for php. (#3226)Paul Yang2017-06-301-44/+48
| | | | | | | | | | | | | | | | | | | | * Add json encode/decode for php. * Fix php conformance test on 32-bit machines. * Fix conformance test for c extension. * Fix comments
| * Add scripts to build python wheel for linux. (#2693)Paul Yang2017-06-281-0/+5
| | | | | | | | | | | | | | | | | | * Add scripts to build python wheel for linux. Followed PEP513. * Fix dist check for new added files. * Update README for usage example.
| * adds PHPDoc @return and @param for getters and setters respectively (#3131)Brent Shaffer2017-06-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * adds PHPDoc @return and @param for getters and setters respectively * addresses changes in PR review * adds documentation tests * Update php_generator: - Prepend \ to names where required - Remove <pre> tags - Update protobuf field comments * Updates class files with the protobuf changes * Addresses review comments * removes Protobuf Type line from PHP generated classes * fixes phpdoc test * adds array types to phpdoc
| * Follows proper autoloading standards (#3123)Brent Shaffer2017-06-141-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Follows proper autoloading standards - Splits PHP classes in descriptor.php into separate files - Splits MapFieldIter and RepeatedFieldIter into separate files - Moves descriptor.php to Internal/functions.php - Moves all namespaced functions into Iternal/functions.php * fixes Makefile.am for added php files * [PHP] moves all functions to GPBUtil * removes description.php from the makefile