aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
Commit message (Collapse)AuthorAge
* Drop README.mdGravatar Damien Martin-Guillerez2017-09-11
| | | | | | | | This file was out of date and is not required The only requirements is too have LICENSE file next to each third_party dependency. Change-Id: I78081b6bfc6d0aa19603e9d3346c97d0bc494de7
* third_party: Update grpc-java, netty and netty-tcnativeGravatar Jakob Buchgraber2017-09-07
| | | | | | | | | | | gRPC Java to 1.6.1 Netty to 4.1.14.Final Netty TCNative to 2.0.5.Final Introduce new dependency OpenCensus at version 0.5.1, which is a runtime dependency of gRPC. Change-Id: Ifc3eca855584ffa9db6b809b40f4bb3541a29449
* Remove some left over bits of Java 7 supportGravatar Liam Miller-Cushon2017-09-06
| | | | Change-Id: Id63d774cf9f5ce0a33ffc926f4160831e78aeba2
* Update visibilities of targets in def_parserGravatar Yun Peng2017-09-05
| | | | Change-Id: Ie8b7dfe207f05f69fdd4499c38cb8baefa3d997f
* Def Parser: make it work with long path betterGravatar Yun Peng2017-09-05
| | | | | | | Previously, only arguments in parameter file are converted to long path. Now, we convert every path we use to long path. Change-Id: Iafff8b7a0f69f82cc9f8f9399b35528814eb7715
* Remove third_party/java/jopt-simple/src/{site,test}.Gravatar Philipp Wollermann2017-09-04
| | | | | | | | | They are unused and the tests depend on Joda Time which I'm going to remove. Also document the removal in the package's README.bazel.md. Change-Id: I7b0ee89718bfc2cffcc60a8262cf53dbf9035669
* Update third_party/protobuf from 3.2.0 to 3.4.0Gravatar Vladimir Moskva2017-09-01
| | | | Change-Id: I3648aadad5895f80051ada39d0ca862dd437cc58
* Update Error Prone versionGravatar Liam Miller-Cushon2017-09-01
| | | | Change-Id: I37ba8d3ade14dc6ab45bca1976776b9cffc98fdc
* Update turbine versionGravatar Liam Miller-Cushon2017-09-01
| | | | Change-Id: I4facde383f170f12870d22cd3f585b26f77fadb6
* Remove Dagger from third_party, as it is unused.Gravatar Philipp Wollermann2017-08-31
| | | | | Change-Id: I41d836bf6ae409f00626a2512d731a6a1adc29c1 RELNOTES: None.
* Syncing the proto with googleapis GitHub version.Gravatar Ola Rozenfeld2017-08-30
| | | | Change-Id: I6b4c5de8acfb5cacd91f00bc439cd93c05d3a08e
* Fix bazel srcs_testGravatar Yun Peng2017-08-28
| | | | | | | Fix: http://ci.bazel.io/blue/organizations/jenkins/CR%2Fbazel-tests/detail/bazel-tests/329/tests/ Change-Id: Id6ea60fd587c2c2922ec161f6320b03d2d379fd8
* Windows: Implementing C++ DEF parserGravatar Yun Peng2017-08-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | C++ DEF parser can generating a DEF file from a object file, which can be used to export symbols during linking DLL on Windows. This parser is based on an implementation in CMake See https://github.com/Kitware/CMake/blob/master/Source/bindexplib.cxx A few changes has been made to make it work better. Usage: output_deffile dllname [objfile ...] [input_deffile ...] [@paramfile ...] output_deffile: the output DEF file dllname: the DLL name this DEF file is used for, if dllname is not empty string (eg. ""), def_parser writes an 'LIBRARY <dllname>' entry into DEF file. objfile: a object file, def_parser parses this file to find symbols, then merges them into final result. Can apppear multiple times. input_deffile: an existing def file, def_parser merges all symbols in this file. Can appear multiple times. @paramfile: a parameter file that can contain objfile and input_deffile Can appear multiple time. Change-Id: I0ee65fa3119ecae2ea195b707af5690e4bc6a6c2
* Update Error Prone to 2.1.0Gravatar Liam Miller-Cushon2017-08-23
| | | | Change-Id: I2cc29588818295b04566d0c7f1340dd9133b33bc
* Update javac version to 9-dev-r4023-3Gravatar Liam Miller-Cushon2017-08-22
| | | | | Change-Id: If9373f81193050009432759da6299f1382e587ec PiperOrigin-RevId: 165994437
* Delete unused buck iOS supportGravatar Peter Schmitt2017-08-14
| | | | Change-Id: I56592ed4e507389d329377436223716c00348869
* Bump python-gflags to 3.1.0, take twoGravatar Joe Finney2017-08-10
| | | | | | | This reverts commit 1fb46ce05bb6423d9064b8d274e7be601f16a49f. Trying again. Closes https://github.com/bazelbuild/bazel/pull/3363
* bes: Update RPC PublishBuildToolEventStream.Gravatar Kai Xu2017-07-24
| | | | | | Change the return type for RPC PublishBuildToolEventStream from OrderedBuildEvent to PublishBuildToolEventStreamRequest. Change-Id: I8421e9d2d8a5e6720d7b8d6de4417bee71c0fa68
* Windows: add blaze_util::AsAbsoluteWindowsPathGravatar laszlocsomor2017-07-24
| | | | | | | | | | | Replace blaze_util::AsWindowsPathWithUncPrefix with AsAbsoluteWindowsPath, which always returns an absolute path. Fixes https://github.com/bazelbuild/bazel/issues/2935 RELNOTES: none PiperOrigin-RevId: 162727218
* Windows: clean up error reportingGravatar Laszlo Csomor2017-07-20
| | | | | | | | | | | | | | | | | | | In this commit: - remove blaze::PrintError in favor of blaze_util::PrintError - remove Ijar's PrintLastErrorMessage in favor of blaze_util::PrintError - use pdie every time path conversion fails, because that indicates a fatal error (bad user input for a path flag, or downright bug) - remove explicitly printing GetLastErrror; pdie and PrintError do it already - unify the pdie/PrintError message formats Fixes https://github.com/bazelbuild/bazel/issues/2935 Change-Id: I5feaf73885cab95c43a28c529ada6942e037b162 PiperOrigin-RevId: 162587490
* Set //third_party/py/six:srcs to public visibility. (#3378)Gravatar Joe Finney2017-07-14
| | | | | | Close #3378. Change-Id: I8ab58b00d5d8b86880c45f05feb139c01e0368aa
* Turn on CRC computation in ijar by default.Gravatar lberki2017-07-14
| | | | | RELNOTES: None. PiperOrigin-RevId: 161785358
* Fix #3280: SingleJar prints annoying "bit length overflow" messagesGravatar Philipp Wollermann2017-07-12
| | | | | Change-Id: Iaaf3272f45cce04d41e75ffbe2fa5b5b9f68734c RELNOTES: None.
* third_party/googleapis: Update BES protos to latest version.Gravatar Jakob Buchgraber2017-07-12
| | | | Change-Id: I8b0f4e7547358704d038db312795c58acaaac4a7
* Revert "Bump python-gflags to version 3.1.0."Gravatar Damien Martin-Guillerez2017-07-11
| | | | | | This reverts commit d82e69cef3f52f27c418c515f8af6af57d55aaf4. This commit fails to build on Windows because of incorrect imports.
* Bump python-gflags to version 3.1.0.Gravatar Joe Finney2017-07-11
| | | | | | The new version adds support for Python 3. Change-Id: I88f322c6e9f35699fe5f708f52c5b84fb00a5b4b
* Make source code of singlejar and ijar available from @bazel_tools. ,Gravatar Xin Gao2017-06-22
| | | | | | | | | | Please refer to patch set 9 and its CI run for usage and test results. In practice, users should create their own java_toolchain rule in their project's BUILD file, and set the two attributes like above instead of modifying //tools/jdk/BUILD. Change-Id: Ic880f243086b00a58d453a8139ba4c957fe54bc7 PiperOrigin-RevId: 159694649
* Syncing the proto with the latest googleapis version. Removing the no longer ↵Gravatar Ola Rozenfeld2017-06-21
| | | | | | used wait_for_completion field. Change-Id: I83a16d22f49c44989ec7030b5d2c9c9b1387e6e0
* Require parentheses around tuple in list comprehension filtering.Gravatar laurentlb2017-06-19
| | | | | | | | | | | This affects only the tuple that appears after 'if' inside a list comprehension. Since a truth value is expected, it's very unlikely to break existing code. It's technically a breaking change, but it's not worth introducing a flag for this. RELNOTES: Parentheses around the tuple are now mandatory in [a for b in c if 1, 2] PiperOrigin-RevId: 159218397
* Create embedded_tools targets for ijar and zlib.Gravatar Xin Gao2017-06-19
| | | | | | This is part of https://bazel-review.googlesource.com/#/c/11590/. Change-Id: Id4a7fd459013e3f25a5a99684ea04295e3b68fb4
* protobuf: Update protobuf jars to be binary compatible with Java 6. Fixes #3198Gravatar Jakob Buchgraber2017-06-16
| | | | | | | | | | | | | I recompiled the protobuf jars to be binary compatible with Java 6 by specifying -target 1.6 to javac. Verified: $ javap -v -cp third_party/protobuf/3.2.0/libprotobuf_java.jar com.google.protobuf.MessageOrBuilder | grep "major" major version: 50 $ javap -v -cp third_party/protobuf/3.2.0/libprotobuf_java_util.jar com.google.protobuf.util.Durations | grep "major" major version: 50 Change-Id: Ib40f8af8393de79dd431d08eb766c269bab2e608
* Update README.mdGravatar samuela2017-06-16
| | | | | | Close #3126 Change-Id: I457a215e147409d9449a3bca0bc0e88584f0ded5
* Add support for zipped LLVM profile files.Gravatar Googler2017-06-14
| | | | | | | | | | | | | | | | | | | This change is a follow-up to a recent change which allowed LLVM raw profile files to be directly used with blaze. This change allows zipped LLVM raw profile files. This uses //tools/zip:zipper to extract the zipped file contents. This also adds a new option to //tools/zip:zipper, 'j', to junk directories while unzipping. Tested: blaze test //devtools/blaze/integration:fdo_test blaze test //third_party/ijar/test:zip_test RELNOTES[NEW]: Zipped LLVM profiles are now supported. PiperOrigin-RevId: 158849516
* make included gflags library py3 compatibleGravatar MarkusTeufelberger2017-06-12
| | | Use the print() function from future and use the "as" syntax for catching exceptions
* Add :apache_commons_logging as the dependency of the remote worker.Gravatar Ivan Vučica2017-06-09
| | | | | | This fixes an exception being thrown and logged by the remote worker process (//src/tools/remote_worker:remote_worker) every time the remote worker attempts to access the remote REST cache.
* third_party/googleapis: Add java_proto_library_srcs rules.Gravatar Jakob Buchgraber2017-06-08
| | | | | | | | When bootstrapping, we generate a .zip file of generated java classes. In this CL we add the java_library_srcs targets, that generate the sources .jar files for bootstrapping. Change-Id: Ib33edcc6ba996e433eb646a236e5f44c73b63460
* Update Apache HTTP Client and Apache HTTP Core.Gravatar Philipp Wollermann2017-06-08
| | | | | | This imports the new versions needed for #3030. Change-Id: I82fc47c97acb96354fdeda1baf88ca06bd1e27cc
* third_party/googleapis: Add java_grpc_library for bytestream.protoGravatar Ola Rozenfeld2017-06-07
| | | | Change-Id: I02463aacc17600918f6bae4e4065a88b6850de21
* third_party/googleapis: Add remote_execution.protoGravatar Jakob Buchgraber2017-06-07
| | | | Change-Id: Ifce1b51ef169ee8ac22fd90c0c68db3121b4296d
* third_party/googleapis: Add java_grpc_library for publish_build_event.protoGravatar Jakob Buchgraber2017-06-07
| | | | Change-Id: I749fbbc8fa9565c2414452cc8e3708bad8a92f25
* third_party: Fix labels so they can be used from within new_local_repositoryGravatar Jakob Buchgraber2017-06-07
| | | | Change-Id: Ic2969d328e211e3d977efeb2f778aceec1416a27
* third_party/grpc: Introduce filegroup of jars for bootstrappingGravatar Jakob Buchgraber2017-06-06
| | | | Change-Id: I580f519c1b274b497b3b37427a96e105bbe241dd
* Add java_grpc_library rule that uses bazel's native proto_library.Gravatar Jakob Buchgraber2017-06-06
| | | | | | | | Code taken from PR: https://github.com/grpc/grpc-java/pull/2975 Once this is merged into gRPC we can directly depend on gRPC. Change-Id: Ide77414276b4125e85dfa6f93725143e3149d8ec
* Update grpc-java to 1.3.0, netty to 4.1.8.FinalGravatar Jakob Buchgraber2017-05-31
| | | | Change-Id: I24e44ce87f5e042ddddb4cdbdcdd118a2d30a5eb
* Fixes J2ObjC support. Adds a BUILD.tools and updates BUILD.remote withGravatar Keith Stanger2017-05-30
| | | | | | the necessary targets depended upon by J2ObjCAspect.java. Change-Id: I0a93378029707f0ebbda3a30b947519a385243f1
* Introduce third_party/googleapisGravatar Jakob Buchgraber2017-05-30
| | | | | | | | | | | | | Add `https://github.com/googleapis/googleapis` as a third_party dependency at commit `001f6702ac4cd72194a5120ff978fcfa740783d6`. These protos are required for the upcoming open sourcing of the BES protocol code. Additionally, add (java_)proto_library() rules for the protobufs required by the BES protocol. Change-Id: Ie78a9941a62f2085a58ad859c91161885e6f390d
* third_party/protobuf: Add proto_library for well known types.Gravatar Jakob Buchgraber2017-05-30
| | | | | | | | | | | | | | | | In order to use the build event service protobufs we need to support protobufs well known types inside bazel. Unfortunately, due to a bug in bazel's proto_library [1], protobuf can't provide such a proto_library yet [2]. We expect this patch to be committed to protobuf upstream once [1] is resolved. Bazel's proto_library bug [1] is also the reason why this change has to duplicate the well known protos under google/protobuf. [1] https://github.com/bazelbuild/bazel/issues/2265 [2] https://github.com/google/protobuf/issues/2763 Change-Id: I5e16d437f2f581f11553049be0b4bcc564f4ad96
* Refactor protobuf and grpc BUILD files for WindowsGravatar Yun Peng2017-05-29
| | | | | | | | 1. Added config_settings for Windows 2. Don't use gcc warning options in copts, this made it possible to build without python wrapper scripts. Change-Id: I37521d717b9d2d488a3bb0ec658dad40c6ddbb27
* Clean up aliases after javac upgradeGravatar Liam Miller-Cushon2017-05-11
| | | | Change-Id: Iec9ded10a3a3c9562897090fcb7a1c01119676f7
* Update turbine versionGravatar Liam Miller-Cushon2017-05-11
| | | | Change-Id: I4b9bddb695db15d6fe8113fb6d44518bc6909a17