aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Modified NPM package to make all dependencies dev dependencies.package-jsonJosh Haberman2016-04-131-4/+4
|
* Merge pull request #1397 from google/internal-mergeJoshua Haberman2016-04-11273-4795/+34425
|\ | | | | Internal merge
| * Fix for gulpfile.js.Josh Haberman2016-04-111-1/+10
| |
| * Removed duplicated operator delete from merge conflict.Josh Haberman2016-04-071-6/+0
| |
| * Merge branch 'master' into internal-mergeJosh Haberman2016-04-0742-124/+371
| |\
| * | Fix for CommonJS tests.Josh Haberman2016-04-072-8/+30
| | |
| * | Merge pull request #1381 from pherl/internal-mergeJisi Liu2016-04-01270-4796/+34417
| |\ \ | | | | | | | | Merge Google internal changes to an internal branch
| | * | Merge branch 'master' into internal-mergeJisi Liu2016-04-01270-4796/+34417
| |/| | | | | | | | | | | | | | | | | | Temporarily merges google internal changes. The javascript tests are still failing and require additional investigation.
| | * | Merge branch 'master' of github.com:google/protobufJisi Liu2016-04-0112-106/+218
| | |\ \ | | |/ / | |/| |
| | * | Do not use C++11 unicode escape in unittest.Jisi Liu2016-04-011-1/+1
| | | | | | | | | | | | | | | | For fixing MSVC
| | * | Do not let windows.h define min/max macrosJisi Liu2016-04-011-0/+1
| | | |
| | * | Allow bigobj for map_unittestJisi Liu2016-04-011-0/+2
| | | |
| | * | Fix re-definition issue of winsock.h and winsock2.hJisi Liu2016-03-311-0/+1
| | | |
| | * | Disable sign-compare warning.Jisi Liu2016-03-311-1/+3
| | | |
| | * | Fix signed-compare warning.Jisi Liu2016-03-311-1/+1
| | | |
| | * | revert unexpected change for py26Jisi Liu2016-03-311-1/+4
| | | |
| | * | Fix WIN32 build for map_test.Jisi Liu2016-03-311-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | stubs/common.h undefines the GetMessage macro introduced in windows.h map_test however include stubs/common.h before windows.h is transitively included. This hack force map_test.cc to include windows.h first, so we have a chance to undefine the GetMessage macro.
| | * | Remove export macros for classes nested in a template class.Jisi Liu2016-03-311-3/+3
| | | |
| | * | Fix javanano packageJisi Liu2016-03-311-0/+3
| | | |
| | * | Fix json_format.py in py26Jisi Liu2016-03-311-2/+4
| | | |
| | * | Fix breakage of referring to table_ in static funcJisi Liu2016-03-311-1/+1
| | | | | | | | | | | | | | | | | | | | Referencing data member table_ in static functions break certain platforms. Change it to refer to the declare type void** instead.
| | * | Temporarily disable begin is fast test.Jisi Liu2016-03-311-1/+2
| | | |
| | * | Merge branch 'master' of github.com:google/protobufJisi Liu2016-03-30114-6935/+4729
| | |\ \
| | * | | Integrate google internal changes.Jisi Liu2016-03-30269-4802/+34402
| | | | |
* | | | | Merge pull request #1400 from jskeet/fix-internalJan Tattermusch2016-04-101-1/+2
|\ \ \ \ \ | | | | | | | | | | | | Fix to csharp_options - initialize internal_access to false.
| * | | | | Fix to csharp_options - initialize internal_access to false.Jon Skeet2016-04-081-1/+2
|/ / / / /
* | | | | Merge pull request #1393 from gvaish/masterJon Skeet2016-04-073-1/+6
|\ \ \ \ \ | |_|_|_|/ |/| | | | Added support for internal_access for C#
| * | | | Added support for internal_access for C#Gaurav Vaish2016-04-073-1/+6
| | | | |
* | | | | Merge pull request #1392 from anandolee/masterJie Luo2016-04-078-19/+41
|\ \ \ \ \ | |/ / / / |/| | | | Sync the manually integrate changes in google3/third_party
| * | | | sync the Manually integrate changes in google3/third_partyJie Luo2016-04-068-19/+41
| | | | |
* | | | | Merge pull request #1390 from jskeet/tidy-upJon Skeet2016-04-0721-49/+111
|\ \ \ \ \ | | | | | | | | | | | | Tidy up for C# codegen
| * | | | | Add more documentation for csharp_options.hJon Skeet2016-04-062-6/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This also renames generate_directories to base_namespace_specified; generating directories is the immediate *effect* of specifying a base namespace, but with this change the options reflect what has been specified rather than the effect. (There may be other effects in the future, of course.)
| * | | | | Line-wrapping changes only for C# generator codeJon Skeet2016-04-0620-44/+94
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should have no behavioral changes at all. This doesn't strictly enforce an 80-column limit, but removes the most egregious violations. The indentation in the C# generator code is inconsistent in general, unfortunately - if we have any good tools that can be trusted to reformat, I'd be happy to apply them.
* | | | | | Merge pull request #1391 from thomasvl/string_tweaksThomas Van Lenten2016-04-062-9/+47
|\ \ \ \ \ \ | | | | | | | | | | | | | | ObjC String followups: one test case only addition, behavior change for invalid UTF-8
| * | | | | | Error during parsing for invalid UTF-8 instead of dropping dropping data.Thomas Van Lenten2016-04-052-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This seems to be some code evolution side effects. Back when there was a custom string class, we couldn't really error when we finally saw the string was bad so we had to return the empty string, but now that full validation is done up front, it can error out.
| * | | | | | Add tests to ensure we read strings with BOMs so we don't forget about ↵Thomas Van Lenten2016-04-051-0/+38
| |/ / / / / | | | | | | | | | | | | | | | | | | lessons of the past.
* / / / / / Updating Xcode Settings to use iOS 9.3Geoffrey Wiseman2016-04-061-0/+8
|/ / / / / | | | | | | | | | | | | | | | Update the simulators used for some tests under Xcode 7.3 to be iOS 9.3.
* | | | | Merge pull request #1349 from gvaish/masterJon Skeet2016-04-0532-84/+177
|\ \ \ \ \ | | | | | | | | | | | | Added CLI option internal_access for types (C#)
| * | | | | Added access_level for typesGaurav Vaish2016-04-0532-84/+177
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * `csharp_options`: Added `Options` to encapsulate generator options. Supported options for now - file_extension, base_namespace * `{Blah}Generator`: Now accept `Options*` as parameter to constructor * `csharp_generator.cc`: Parse and populate options * `Makefile.am`: Added `csharp_options.h` * `extract_includes.bat.in`: Added `csharp_options.h` Refactoring code to two commits. This is the first commit
* | | | | Merge pull request #1386 from andrewharp/patch-2Feng Xiao2016-04-051-2/+12
|\ \ \ \ \ | | | | | | | | | | | | Do not link in pthread library for Android builds.
| * | | | | Update BUILDAndrew Harp2016-04-041-1/+1
| | | | | |
| * | | | | Do not link in pthread library for Android builds.Andrew Harp2016-04-041-2/+12
|/ / / / / | | | | | | | | | | This is required to allow Tensorflow to build on Android without hacks. Currently we create a dummy pthread library just to satisfy this dependency for a library that does not exist on Android. See https://github.com/google/protobuf/issues/1373 for more context.
* | | | | Merge pull request #852 from qzix/masterThomas Van Lenten2016-04-045-11/+41
|\ \ \ \ \ | |/ / / / |/| | | | Added deprecated option handling to objective-c
| * | | | Added deprecated option handling for objective-c generatorOleg Vereshko2016-04-045-11/+41
| | | | |
* | | | | Merge pull request #1353 from keveman/masterJoshua Haberman2016-04-012-17/+30
|\ \ \ \ \ | | | | | | | | | | | | Linking the cpp implementation extension statically with libprotobuf
| * | | | | Linking the cpp implementation extension statically with libprotobufManjunath Kudlur2016-04-012-17/+30
| | | | | |
* | | | | | Merge pull request #1377 from jskeet/remove-duplicate-testsJon Skeet2016-04-012-2/+0
|\ \ \ \ \ \ | | | | | | | | | | | | | | Remove duplicate test cases.
| * | | | | | Remove duplicate test cases.Jon Skeet2016-04-012-2/+0
| | |/ / / / | |/| | | | | | | | | | | | | | | | (NCrunch noticed these.)
* | | | | | Merge pull request #1378 from thomasvl/manual_stream_parsing_helpersThomas Van Lenten2016-04-012-0/+17
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Add -position and -isAtEnd for use when manually parsing input streams.
| * | | | | Add -position and -isAtEnd for use when manually parsing input streams.Thomas Van Lenten2016-04-012-0/+17
|/ / / / /