aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/protobuf
Commit message (Collapse)AuthorAge
...
* Fix a wrong target name in the protobuf/3.0.0/BUILD file.Gravatar Philipp Wollermann2016-10-19
| | | | | | | | | | | The "protobuf_python" target references a "protobuf_python_srcs" target in its deps, which does not exist, causing a build error when I tried to run "bazel build //src/main/...": ERROR: /Users/philwo/src/bazel/third_party/protobuf/3.0.0/BUILD:70:1: in deps attribute of py_library rule //third_party/protobuf/3.0.0:protobuf_python: rule '//third_party/protobuf/3.0.0:protobuf_python_srcs' does not exist. Since this rule was created by the macro 'py_proto_library', the error might have been caused by the macro implementation in /Users/philwo/src/bazel/third_party/protobuf/protobuf.bzl:256:12. I think the "python_srcs" target should actually be called "protobuf_python_srcs". With that change, the build works. -- MOS_MIGRATED_REVID=136467485
* Adding support for Linux s390xGravatar namrata-ibm2016-10-11
| | | | | | | | | | | We have added support for Linux s390x platform in Bazel. Closes #1891. -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/1891 MOS_MIGRATED_REVID=135777047
* Rollback of commit 0d36f410370ed99cbd57359d7444269faec134f8.Gravatar Alex Humesky2016-09-30
| | | | | | | | | | | | | | | | | | | | | | *** Reason for rollback *** Windows protoc compiler fixed: https://github.com/bazelbuild/bazel/issues/1856 *** Original change description *** Automated [] rollback of commit a12aae73ee292fdcb170f4eaeb8939283d05383c. *** Reason for rollback *** Breaks Bazel Windows Bootstrap Fix https://github.com/bazelbuild/bazel/issues/1851 *** Original change description *** Updates protobuf in bazel to version 3.0.0. -- MOS_MIGRATED_REVID=134699683
* Proto compiler: update the 3.0.0 MinGW protocGravatar László Csomor2016-09-29
| | | | | | | | | | | This allows us to roll forward https://github.com/bazelbuild/bazel/commit/a12aae73ee292fdcb170f4eaeb8939283d05383c which was rolled back by commit https://github.com/bazelbuild/bazel/commit/0d36f410370ed99cbd57359d7444269faec134f8 Fixes https://github.com/bazelbuild/bazel/issues/1856 RELNOTES: Update protoc-3.0.0-mingw.exe to a working (statically linked) binary
* Protobuf: update build instructions for MinGWGravatar Laszlo Csomor2016-09-29
| | | | | | | | | See https://github.com/bazelbuild/bazel/issues/1856 Slightly reformat (prettify) the page too. -- MOS_MIGRATED_REVID=134649252
* Rollback of commit a12aae73ee292fdcb170f4eaeb8939283d05383c.Gravatar Yun Peng2016-09-28
| | | | | | | | | | | | | | *** Reason for rollback *** Breaks Bazel Windows Bootstrap Fix https://github.com/bazelbuild/bazel/issues/1851 *** Original change description *** Updates protobuf in bazel to version 3.0.0. -- MOS_MIGRATED_REVID=134510744
* Updates protobuf in bazel to version 3.0.0.Gravatar Alex Humesky2016-09-28
| | | | | -- MOS_MIGRATED_REVID=134464786
* Update instructions on how to build protoc-mingw.exe.Gravatar Dmitry Lomov2016-09-22
| | | | | -- MOS_MIGRATED_REVID=133842785
* Added 3.0.0 protocGravatar Dmitry Lomov2016-09-21
| | | | Change-Id: Ia0d5aebdf5d24da8aadecc51fd8ffdefa063d993
* Update protobuf README.Gravatar Laszlo Csomor2016-09-19
| | | | | | | | | | | - Remove mention of non-existent proto compiler - Add info about updating protobuf.bzl and BUILD files Fixes https://github.com/bazelbuild/bazel/pull/1769#issuecomment-247966248 Fixes https://github.com/bazelbuild/bazel/issues/1790 -- MOS_MIGRATED_REVID=133572313
* Config files compatible with the new version of BazelGravatar Vladimir Moskva2016-09-12
| | | | Change-Id: I59fd0ff2059abb16ccb23403736efe2d955038f4
* Adds missing protobuf.bzl to version 3.0.0 of protobufGravatar Alex Humesky2016-09-09
| | | | Change-Id: I2119ce7cdce68c2732653fa0152abf0150d17ac0
* Adds protobuf 3.0.0 to third_partyGravatar Alex Humesky2016-09-07
| | | | Change-Id: I91f5b85852cabff0da8b1c68bf432596d7dc341d
* Update the proto library version in BUILD filesGravatar Kristina Chodorow2016-08-11
| | | | | -- MOS_MIGRATED_REVID=129865689
* Add 3.0.0 beta 4 version of protobuf to third_partyGravatar Kristina Chodorow2016-08-10
| | | | Change-Id: I1505726ca66ab578cf29d2dc6018a2ff1e2ccaaf
* Fixes bugs so that we can build bazel with bazel on WindowsGravatar Yun Peng2016-04-14
| | | | | | | | | | | | | | | | | | | src/main/java/com/google/devtools/build/lib/exec/SymlinkTreeHelper.java: enable --windows_compatible flag on Windows to make build-runfiles.exe work. scritps/bootstrap/compile.sh: --windows_compatible will also be passed to a dummy build-runfiles.exe defined in complie.sh. Which is actully a batch script, modify it to make it work. ----- With the changes above, we are able to build bazel with bazel. But when you try to run ./compile.sh compile /path/to/bazel again without clean up tmp directory, it will fail with a permission deny error. The reason seems to be that you can't use build-runfile.exe to build the same hard link twice, still trying to solve that. -- Change-Id: I93340b1ba9fa415f6db963b106e264799e33ede3 Reviewed-on: https://bazel-review.googlesource.com/#/c/3334 MOS_MIGRATED_REVID=119751076
* Disable warnings in protobuf.Gravatar Lukacs T. Berki2016-04-12
| | | | | | It's not our code, so we can't do much about them. Change-Id: If068995e494a398d2c8d05ba428c4d36dbc0e6a3
* Remove te protocol compiler rules from @bazel_tools.Gravatar Lukacs Berki2016-04-11
| | | | | | | | | | | | The immmediate reason for this change is that we also need to add gRPC support to the proto rules, and we don't want to also support gRPC in a half-baked way. This makes the Bazel binary much smaller and avoid giving false signals that we (for now) support protobuf compilation. The protobuf rules are only for compiling Bazel itself. RELNOTES[INC]: Bazel does not embed protocol buffer-related rules anymore. -- MOS_MIGRATED_REVID=119516246
* Update README.md and BUILD files for protobuf C++ sources v3.0.0-beta-2.Gravatar Lukacs Berki2016-04-07
| | | | | -- MOS_MIGRATED_REVID=119255585
* Remove mentions of the arm32 proto compiler and update README.md.Gravatar Lukacs Berki2016-04-07
| | | | | | | Information in README.md about the statically linked x86_64 binary and the src/ directory got lost due to a snafu with updating the tree from the Google-internal version. -- MOS_MIGRATED_REVID=119250383
* Update protobuf sources to v3.0.0-beta-2 (aka. d5fb408d)Gravatar Lukacs T. Berki2016-04-07
| | | | | | Let's at least keep versions consistent within one third-party library. Change-Id: I707fc6cd90dcc21e354ea91439417ffe3c9827a4
* Update the x86_64 protoc with a statically linked version.Gravatar Lukacs T. Berki2016-04-06
| | | | Change-Id: I9fac9d265ae9f1691be4dbb4b3bef6f35872b5ee
* Add source files of the C++ protobuf runtime library.Gravatar Lukacs T. Berki2016-04-01
| | | | | | Actually, it's a bit more files than strictly necessary, but it's easier to maintain this way. Change-Id: I22bba190940c1695f491cd28c7a7a95018d77bb1
* Change from the MingW-specific proto compilers to the Windows-based ones.Gravatar Lukacs Berki2016-03-31
| | | | | | | | | protoc-mingw.exe dumps core for whatever reason, and these seem to work at least well enough for compile.sh . protoc-mingw.exe was apparently introduced due to a 1024-character path limit, but that doesn't break the continuous build. Fixes #1101. -- MOS_MIGRATED_REVID=118667728
* Fix a dangling label.Gravatar Lukacs Berki2016-03-21
| | | | | | | I didn't verify that this is the right thing, but it sure compiles. That's not a very high bar for Python rules, though. -- MOS_MIGRATED_REVID=117543822
* Add Python protobuf to Bazel third_party and move all protobuf targets intoGravatar David Chen2016-03-17
| | | | | | | //third_party/protobuf. -- MOS_MIGRATED_REVID=117336377
* Add protobuf .proto sources to third_party/protobuf.Gravatar David Z. Chen2016-03-14
|
* Remove python protobuf test sources from third_party/protobuf.Gravatar David Z. Chen2016-03-10
|
* Add protobuf.bzl and Python protobuf sources at ↵Gravatar David Z. Chen2016-03-10
| | | | 48ebb29a8ec118bf6b9ee39f6be42b57321c099a to third_party/protobuf.
* Restore third_party/bazel/README.md in the exported Bazel tree.Gravatar Julio Merino2016-02-10
| | | | | -- MOS_MIGRATED_REVID=114324917
* Description redacted.Gravatar Googler2016-02-09
| | | | | -- MOS_MIGRATED_REVID=114115200
* Add protoc-mingw.exe and related .dllsGravatar Dmitry Lomov2016-02-04
| | | | | | | | | Native protoc-windows.exe fails to support paths longer that 1024 characters. Needed for #276. RELNOTES: None.
* update protobuf executablesGravatar cpeyser2015-12-29
|
* Add native support for linux on ARM Cpu (32 bits)Gravatar Zhong Wang2015-08-12
| | | | | | | -- Change-Id: Ia70ca1b8482e10bc1ac91799aa238f8613e5c824 Reviewed-on: https://bazel-review.googlesource.com/#/c/1801 MOS_MIGRATED_REVID=100476467
* Update third_party/protobuf to 3.0.0-alpha-3.Gravatar Philipp Wollermann2015-06-10
|
* Add README.md for Bazel's third_party/protobuf.Gravatar Philipp Wollermann2015-06-10
| | | | | -- MOS_MIGRATED_REVID=95640440
* Add a statically linked, 32-bits x86 protoc (v2.5.0) for Linux.Gravatar Han-Wen Nienhuys2015-04-09
|
* Update from Google.Gravatar Han-Wen Nienhuys2015-02-25
-- MOE_MIGRATED_REVID=85702957