- 04 May, 2017 1 commit
-
-
Feng Xiao authored
-
- 29 Mar, 2017 2 commits
- 22 Mar, 2017 1 commit
-
-
cgrushko authored
in order to avoid errors related to generics when building user code in newer versions of Java.
-
- 20 Mar, 2017 1 commit
-
-
Bairen Yi authored
-
- 16 Mar, 2017 1 commit
-
-
Byron Yi authored
-
- 03 Mar, 2017 1 commit
-
-
Manjunath Kudlur authored
-
- 23 Feb, 2017 1 commit
-
-
Manjunath Kudlur authored
-
- 08 Feb, 2017 1 commit
-
-
cgrushko authored
The first argument is currently implicitly a .bzl file. Change this to be explicit.
-
- 25 Jan, 2017 1 commit
-
-
Daniel Ylitalo authored
-
- 12 Jan, 2017 1 commit
-
-
cgrushko authored
This allows easy use of Bazel's java_proto_library native rule.
-
- 20 Dec, 2016 1 commit
-
-
Adam Cozzette authored
In pull request #2517 I made this change for the CMake and autotools builds but forgot to do it for the Bazel build.
-
- 05 Dec, 2016 1 commit
-
-
Jisi Liu authored
-
- 03 Dec, 2016 1 commit
-
-
cgrushko authored
Bazel's built-in cc_proto_library rule uses a proto_lang_toolchain to learn how to invoke proto-compiler. To use Bazel's cc_proto_library, add the following to your project's WORKSPACE file: local_repository( name = "com_google_protobuf_cc", path = "/path/to/protobuf-distribution/" )
-
- 18 Oct, 2016 1 commit
-
-
Richard Shin authored
-
- 10 Oct, 2016 1 commit
-
-
Jisi Liu authored
-
- 09 Oct, 2016 1 commit
-
-
Andy Hochhaus authored
-
- 06 Oct, 2016 2 commits
- 23 Sep, 2016 1 commit
-
-
Jisi Liu authored
-
- 22 Sep, 2016 1 commit
-
-
Jisi Liu authored
-
- 04 Aug, 2016 1 commit
-
-
Piotr Sikora authored
Signed-off-by:
Piotr Sikora <piotrsikora@google.com>
-
- 26 May, 2016 1 commit
-
-
David Z. Chen authored
Users often encounter a Python import error when trying to build Python protos if protobuf is installed locally on the machine. In this case, Python ends up looking in the wrong directory when importing files (see bazelbuild/bazel#1209 and tensorflow/tensorflow#2021). It seems that the problem is caused by Python getting confused when there are Python source files that are meant to be part of the same package but are in separate directories. Prior to #1233, the Bazel build setup would copy the Python runtime sources and all generated sources for the builtin protos into the root directory (assuming that the protobuf tree is vendored in a google/protobuf directory). With #1233, the two sets of sources are kept in their respective directories but both `src/` and `python/` are added to the `PYTHONPATH` using the new `imports` attribute of the Bazel Python rules. However, both the runtime sources and the generated sources are under the same package: `google.protobuf`, causing Python to become confused when trying to import modules that are in the other directory. This patch adds a workaround to the Bazel build to add a modified version of the original `internal_copied_filegroup` macro to copy the `.proto` files under `src/` to `python/` before building the `py_proto_library` targets for the builtin protos. This ensures that the generated sources for the builtin protos will be in the same directory as the corresponding runtime sources. This patch was tested with the following: * All Python tests in protobuf * All Python tests in tensorflow * All tests in [Skydoc](https://github.com/bazelbuild/skydoc) * Importing protobuf as `//google/protobuf` * Importing and binding targets under `//external` * Importing protobuf as `//third_party/protobuf`
-
- 28 Apr, 2016 1 commit
-
-
Jisi Liu authored
-
- 18 Apr, 2016 1 commit
-
-
Jisi Liu authored
-
- 15 Apr, 2016 1 commit
-
-
Chad Whipkey authored
proto3. Added a couple unit test proto3 files, for arena_lite and lite. Cloned the proto3_arena_unittest to test some of the basics of generated code (and to ensure that the generated proto3 test files are used by some test).
-
- 08 Apr, 2016 1 commit
-
-
David Z. Chen authored
-
- 04 Apr, 2016 2 commits
-
-
Andrew Harp authored
-
Andrew Harp authored
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.
-
- 23 Mar, 2016 1 commit
-
-
Steven Parkes authored
-
- 12 Mar, 2016 1 commit
-
-
Steven Parkes authored
-
- 10 Mar, 2016 1 commit
-
-
Steven Parkes authored
-
- 09 Mar, 2016 1 commit
-
-
Pete Warden authored
-
- 25 Feb, 2016 1 commit
-
-
David Z. Chen authored
This change makes use of new imports attribute for Bazel's Python rules, which enable adding directories to the PYTHONPATH. This allows us to remove the hack for building protobuf's Python support with Bazel and now allows projects to include protobuf using a Bazel external repository rather than requiring it to be imported directly into the source tree as //google/protobuf. This change also updates the protobuf BUILD file to use a named repository, @python//, for including Python headers rather than //util/python. This allows projects to specify their own package for Python headers when including protobuf with an external repository. Fixes #1230
-
- 23 Feb, 2016 1 commit
-
-
Pete Warden authored
-
- 16 Feb, 2016 1 commit
-
-
Manjunath Kudlur authored
--allow_oversize_protos=true is passed to bazel build. When this macro is set, SetTotalBytesLimit is called to remove the 64MB limit on binary protos when during ParseFromString.
-
- 22 Jan, 2016 1 commit
-
-
Ming Zhao authored
-
- 29 Dec, 2015 1 commit
-
-
Feng Xiao authored
Change-Id: I6fa9f1b65d6c06b891aabf3f3d868364d74d727d
-
- 08 Dec, 2015 2 commits
-
-
Manjunath Kudlur authored
Fixes #1029
-
Manjunath Kudlur authored
-