aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
Commit message (Collapse)AuthorAge
* Use a custom ToString instead of std::to_string that is not available on mingw.Gravatar Dmitry Lomov2016-02-17
| | | | | | | Needed for #276. -- MOS_MIGRATED_REVID=114867808
* Stop bundling ijar's sources in bazel_toolsGravatar Damien Martin-Guillerez2016-02-17
| | | | | | | | | | Instead bundle ijar's zipper binary so the skylark rules that depends on it can use it from @bazel_tools. A commit introducing windows config settings broke our appengine tutorial. -- MOS_MIGRATED_REVID=114857080
* Implement memory-mapped zip files in ijar for Windows.Gravatar Lukacs Berki2016-02-17
| | | | | | | Progress towards #276. -- MOS_MIGRATED_REVID=114829911
* Encapsulate file mapping in preparation for providing a Windows implementation.Gravatar Lukacs Berki2016-02-16
| | | | | | | Progress on #276. -- MOS_MIGRATED_REVID=114740700
* Fixes third_party/BUILD to correctly refer to jimfs-1.1-rc1.jar, which is ↵Gravatar Alex Humesky2016-02-15
| | | | | | | required for scripts/setup-eclipse.sh -- MOS_MIGRATED_REVID=114629937
* Implement distributed caching for BazelGravatar Alpha Lam2016-02-10
| | | | | | | | | | | | | | | | | | | | This patch implements distributed caching for Bazel using Hazelcast. Hazelcast is used as a key value store that stores content of files indexed by the digest of the file. The cache also stores the list of files for an action. The key in this case is the digest from the key of the action and the list of files. In this change I also added the interface for remote execution. The implementation will be added in a subsequent patch. This change is only the first in a series of changes related to distributed caching and remote execution. I plan to revise the APIs and implementation in subsequent changes. -- Change-Id: I569285d6149a4e9f8ba2362682c07a9f1e1943b7 Reviewed-on: https://bazel-review.googlesource.com/#/c/2760/ MOS_MIGRATED_REVID=114325038
* Restore third_party/bazel/README.md in the exported Bazel tree.Gravatar Julio Merino2016-02-10
| | | | | -- MOS_MIGRATED_REVID=114324917
* Add JimFS to Bazel's third_partyGravatar Liam Miller-Cushon2016-02-10
| | | | | -- MOS_MIGRATED_REVID=114242270
* Refactor buildjar BUILD filesGravatar Liam Miller-Cushon2016-02-10
| | | | | -- MOS_MIGRATED_REVID=114223734
* Third-party binaries updateGravatar Damien Martin-Guillerez2016-02-09
| | | | | | | - Removed the obsolete joda-time (renamed into joda_time) - Added jimfs from https://github.com/google/jimfs/releases/download/v1.1-rc1/jimfs-1.1-rc1.jar Change-Id: I141aadd9feb08af59bf0866a0fa755916e2817a9
* Description redacted.Gravatar Googler2016-02-09
| | | | | -- MOS_MIGRATED_REVID=114115200
* Add Hazelcast 3.5.4 to third_partyGravatar Philipp Wollermann2016-02-08
|
* Use protoc-mingw on Windows.Gravatar Dmitry Lomov2016-02-04
| | | | | | | | | | Native protoc-windows.exe fails to support paths longer that 1024 characters. Needed for #276. -- MOS_MIGRATED_REVID=113834005
* Add support for downloading .tar.xz files to http_archive rules.Gravatar David Chen2016-02-04
| | | | | | | | | Fixes #845 RELNOTES: Add support for .tar.xz archives to http_archive rules. -- MOS_MIGRATED_REVID=113829042
* 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.
* Add xz 1.5 JAR to third_party.Gravatar David Z. Chen2016-02-04
|
* Report source position information for Error Prone crashesGravatar Liam Miller-Cushon2016-02-01
| | | | | -- MOS_MIGRATED_REVID=113492679
* RELNOTES[INC]: Remove JAVAC "Make" variableGravatar Liam Miller-Cushon2016-02-01
| | | | | | | | | | | | | | The JAVAC "Make" variable is the javac packaged with the host JDK, which is not necessarily the same version used to compile java_library rules. Users should typically use java_library directly. If a manual javac invocation is required, BazelJavac uses the same javac version and flags as java_library. In the rare cases where the host JDK's compiler is actually desired, prefer `$(JAVABASE)/bin/javac` to `$(JAVAC)` for clarity. -- MOS_MIGRATED_REVID=113386241
* Convert j2objc workspace name to use _, not -Gravatar Kristina Chodorow2016-01-27
| | | | | | | | | | We're restricted repository names in preparation for improving the runfiles situation. RELNOTES: j2objc tools can now be accessed via @bazel_j2objc, not @bazel-j2objc. -- MOS_MIGRATED_REVID=113071304
* Support @ syntax for specifying the list of files to zipperGravatar Damien Martin-Guillerez2016-01-21
| | | | | | | | | | | | | | | When creating an archive with //third_party/ijar:zipper, all files to add should be specified as an argument. When adding a lot of files, this leads to reaching the maximum size of the command line. This change add a @filename argument that permit to specify a file containing the list of files to zip. -- Change-Id: I02843588896969ef2d6add26c1c67ff44a27f7de Reviewed-on: https://bazel-review.googlesource.com/#/c/2695/ MOS_MIGRATED_REVID=112678600
* Set test_class for java_test test target where it is neededGravatar Damien Martin-Guillerez2016-01-19
| | | | | | | | | This make those test target compatible with --nolegacy_bazel_java_test. -- Change-Id: I2316c9aa53327b417ecce5fd5dab95ec726da11d Reviewed-on: https://bazel-review.googlesource.com/#/c/2690 MOS_MIGRATED_REVID=112446514
* Remove Truth 0.27 since 0.28 is there since quite a while.Gravatar Lukacs T. Berki2016-01-19
| | | | Change-Id: I99487b78a4f9a564c0618209f638425e2e39baa6
* Correct a path in BUILD file comment.Gravatar Alex Humesky2016-01-13
| | | | | -- MOS_MIGRATED_REVID=112027856
* Make the Bazel continuous build work again after the change that introduced ↵Gravatar Lukacs Berki2016-01-12
| | | | | | | apkbuilder. -- MOS_MIGRATED_REVID=111935178
* Adds ApkBuilder from the Android SDK to bazel's third_party with someGravatar Alex Humesky2016-01-11
| | | | | | | | | modifications to remove deprecation warnings, to create deterministic apks (removes timestamps), and to make calling ApkBuilder more convenient. RELNOTES: Timestamps within Android apks are removed to make apks deterministic. -- MOS_MIGRATED_REVID=111890659
* Update to truth 0.28Gravatar Damien Martin-Guillerez2016-01-08
| | | | | -- MOS_MIGRATED_REVID=111670453
* Add Truth 0.28 binary to third_partyGravatar Damien Martin-Guillerez2016-01-08
|
* update protobuf executablesGravatar cpeyser2015-12-29
|
* Add jar for java/dd_plistGravatar cpeyser2015-12-29
|
* Update Error Prone to 2.0.8-20151216Gravatar Liam Miller-Cushon2015-12-17
| | | | | | | Also split out dependencies, instead of repackaging them. -- MOS_MIGRATED_REVID=110433600
* Third-party dependencies update:Gravatar Damien Martin-Guillerez2015-12-16
| | | | Removed guava-18.0
* Update to Guava 19.0Gravatar Damien Martin-Guillerez2015-12-16
| | | | | -- MOS_MIGRATED_REVID=110349155
* Third-party binary updates:Gravatar Damien Martin-Guillerez2015-12-16
| | | | Deleted guice-4.0 (with aop)
* Third-party binary updates:Gravatar Damien Martin-Guillerez2015-12-16
| | | | | Added guava-19.0 Deleted guice-4.0 (with aop)
* Fix ijar_test when errexit is onGravatar Damien Martin-Guillerez2015-12-16
| | | | | | | | $(...) is incorrect when doing a test to test the return value, (...) should be used instead. -- MOS_MIGRATED_REVID=110248027
* unittest.bash: Correctly handle failures due to "errexit" in tests. This ↵Gravatar Philipp Wollermann2015-12-15
| | | | | | | will get rid of all the "ghost flakes" where tests crashed with no apparant reason printed into our logs. Now a stack trace is printed and an easy to understand failure reason, too. -- MOS_MIGRATED_REVID=110142957
* Use guice_noaop to trim down dependenciesGravatar Damien Martin-Guillerez2015-12-10
| | | | | -- MOS_MIGRATED_REVID=109885357
* Add guice-4.0 no_aop binaryGravatar Damien Martin-Guillerez2015-12-10
|
* Adding Guice to Bazel's third_partyGravatar Damien Martin-Guillerez2015-12-09
| | | | | -- MOS_MIGRATED_REVID=109770581
* Added Guice 4.0 binaries to third_party.Gravatar Damien Martin-Guillerez2015-12-08
|
* Add zip64 support to ijarGravatar Liam Miller-Cushon2015-12-03
| | | | | | | This allows ijar to process jars with >65535 entries. -- MOS_MIGRATED_REVID=109321374
* Normalize ijar's header to 'The Bazel Authors'.Gravatar Damien Martin-Guillerez2015-11-19
| | | | | | | | As per discussion with Alan, just use the same copyright than for the rest of Bazel and adds Alan as an author. -- MOS_MIGRATED_REVID=108250408
* Set the ijar MAX_BUFFER_SIZE to 256 MBGravatar Damien Martin-Guillerez2015-11-16
| | | | | | | | | | Some users have reported that the Bazel server was growing to more than 128 MB. Fixes #609 -- MOS_MIGRATED_REVID=107920664
* Removed unused Buck code. I was moved to do this by a recent Rosie CL that ↵Gravatar Matthew DeVore2015-11-13
| | | | | | | cleaned up something that wasn't being used. -- MOS_MIGRATED_REVID=107687310
* Fix half-submitted changes to third_party/README.mdGravatar Klaas Boesche2015-11-06
| | | | | -- MOS_MIGRATED_REVID=107215789
* Add Byte Buddy dependency for Skylark compilation.Gravatar Klaas Boesche2015-11-06
| | | | | | | Split up asm and update it. -- MOS_MIGRATED_REVID=107187126
* Add Byte Buddy jar and up-to-date ASM jars.Gravatar Klaas Boesche2015-11-05
| | | | | | The old ASM jar contains all parts of ASM while the existing dependents only require the core of it. Byte Buddy also requires asm-commons and asm-util.
* Add jsch dependency to build filesGravatar Kristina Chodorow2015-10-23
| | | | | -- MOS_MIGRATED_REVID=106081594
* Set sharding and tmpdir environment variables for googletestGravatar Brian Silverman2015-10-22
| | | | | | | | | | The patch for googletest to prefer GTEST_TMP_DIR is google/googletest#619 and should be merged soon. -- Change-Id: If48220e8e1e4e78a8768aeb14b5b58e4f246c8c3 Reviewed-on: https://bazel-review.googlesource.com/#/c/2170/ MOS_MIGRATED_REVID=106043714
* Add jsch jarGravatar Kristina Chodorow2015-10-21
| | | | Change-Id: Ida7d896d2e03ec0d845b992f8547a4dbedf197fa