aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
Commit message (Collapse)AuthorAge
* Add jsch jarGravatar Kristina Chodorow2015-10-21
| | | | Change-Id: Ida7d896d2e03ec0d845b992f8547a4dbedf197fa
* Fix compile warningsGravatar Kristina Chodorow2015-10-20
| | | | | -- MOS_MIGRATED_REVID=105862956
* Recognize SourceDebugExtension attributes in ijarGravatar Liam Miller-Cushon2015-10-20
| | | | | | | | This doesn't change behaviour (they continue to get dropped from the interface jar), but it avoids some spurious "skipping unknown attribute" warnings. -- MOS_MIGRATED_REVID=105767979
* Update iossim for Xcode 7 support.Gravatar Googler2015-10-19
| | | | | | | | | | | As of Xcode 7, supportedDeviceTypesByName was replaced by supportedDeviceTypesByAlias. This is from latest chromium build. Downstream hash is 9dd179a339c0457f8754069e0774b38f69c258a8. The latest merge was to upstream ef05b7da00844c0d500c4a7f20d4095dab56e7fe -- MOS_MIGRATED_REVID=105621038
* Fix bazel's ijar test afterGravatar Liam Miller-Cushon2015-10-15
| | | | | -- MOS_MIGRATED_REVID=105439722
* Support Java 8 MethodParameters attribute in ijarGravatar Liam Miller-Cushon2015-10-14
| | | | | -- MOS_MIGRATED_REVID=105417011
* Update Error Prone and javac9 versionsGravatar Liam Miller-Cushon2015-10-01
| | | | | -- MOS_MIGRATED_REVID=104423841
* Rationalize copyright headersGravatar Damien Martin-Guillerez2015-09-25
| | | | | | | | | | | The headers were modified with `find . -type f -exec 'sed' '-Ei' 's|Copyright 201([45]) Google|Copyright 201\1 The Bazel Authors|' '{}' ';'` And manual edit for not Google owned copyright. Because of the nature of ijar, I did not modified the header of file owned by Alan Donovan. The list of authors were extracted from the git log. It is missing older Google contributors that can be added on-demand. -- MOS_MIGRATED_REVID=103938715
* Add Apache codec library as a dependencyGravatar Kristina Chodorow2015-09-23
| | | | | | | Fixes #474. -- MOS_MIGRATED_REVID=103668177
* Add jar containing Base64 classGravatar Kristina Chodorow2015-09-22
| | | | Change-Id: I514b1352514e9e194232988722fb0a97253657c3
* Stub out proto_runtime so Bazel analysis doesn't fail for j2objc_library ↵Gravatar Michael Thvedt2015-09-21
| | | | | | | targets. -- MOS_MIGRATED_REVID=103413644
* Move all J2ObjC Bazel dependencies to third_party/java/j2objc.Gravatar Michael Thvedt2015-09-17
| | | | | -- MOS_MIGRATED_REVID=103303357
* Add a maven_server ruleGravatar Kristina Chodorow2015-09-16
| | | | | | | | This will also be used for authentication, but that has not been implemented yet. -- MOS_MIGRATED_REVID=103194964
* Add maven settings librariesGravatar Kristina Chodorow2015-09-16
| | | | Change-Id: I4eb8d305274121733ff7e146d8bcac6874de6158
* Increase the size of ijar_testGravatar Damien Martin-Guillerez2015-09-16
| | | | | | | It is timingout on our Darwin CI machine, see http://ci.bazel.io/job/Bazel/PLATFORM_NAME=darwin-x86_64/110/console -- MOS_MIGRATED_REVID=103130707
* Clean up J2ObjC support in Bazel, removing an unused dependency and linting ↵Gravatar Michael Thvedt2015-09-15
| | | | | | | the relevant files. -- MOS_MIGRATED_REVID=103100493
* Fixes ijar tests on OSXGravatar Damien Martin-Guillerez2015-09-15
| | | | | | | | | Two things were broken: - Paths to zip/unzip when in the PATH by latest change - md5sum was broken by FreeBSD change -- MOS_MIGRATED_REVID=103077733
* Remove a line accidentally left in from debugging.Gravatar Lukacs Berki2015-09-15
| | | | | -- MOS_MIGRATED_REVID=103076612
* Make ijar appropriately prune InnerClasses, at the cost of a lot of unholy ↵Gravatar Lukacs Berki2015-09-15
| | | | | | | hacks. -- MOS_MIGRATED_REVID=103068956
* Fix ijar compressionGravatar Damien Martin-Guillerez2015-09-11
| | | | | | | | | | Ijar was compressing with the zlib wrapper, which is incompatible with the ZIP format. Unfortunately, the zlib wrapper is totally undocumented. Fixes #436. -- MOS_MIGRATED_REVID=102846162
* Add CRC-32 computation to third_party/ijar:zipperGravatar Damien Martin-Guillerez2015-09-11
| | | | | | | | | This can be a problem for some usage of the produced ZIP file to not compute the CRC-32 correctly. We still skip it for ijar for speed. -- MOS_MIGRATED_REVID=102844157
* Updated Bazel's j2objc version to 0.9.8.1 (latest).Gravatar Googler2015-09-11
| | | | | -- MOS_MIGRATED_REVID=102770538
* Also check the XML_TEST_OUTPUT env variable and generate xml output if set.Gravatar Ulf Adams2015-09-09
| | | | Change-Id: Ie657f0dba2cd92805fc0ef832f2300b87b5905c8
* RELNOTES: Support empty plist filesGravatar Matthew DeVore2015-09-08
| | | | | -- MOS_MIGRATED_REVID=102570037
* Add more source filegroups for the installerGravatar Damien Martin-Guillerez2015-09-03
| | | | | | | | | | | | | | | | | | | | | | With those filegroup the tutorial is able to compile iOS and App Engine stuff. Here how to test: git clone https://github.com/bazelbuild/bazel git clone https://github.com/bazelbuild/examples export BAZEL_WORKSPACE=$PWD/bazel export EXAMPLES_WORKSPACE=$PWD/examples cd $BAZEL_WORKSPACE ./compile.sh ./output/bazel --bazelrc=/dev/null --nomaster_bazelrc \ build //scripts/packages:install.sh export BAZEL_INSTALLER=$(readlink bazel-bin)/scripts/packages/install.sh cd $EXAMPLES_WORKSPACE ./tutorial/ci/build.sh -- Change-Id: I553ab8821f5a5cdcc7a8b4614e23ca4c79581e4f Reviewed-on: https://bazel-review.googlesource.com/1878 MOS_MIGRATED_REVID=102239866
* Fix a signed vs unsigned comparison warning in the ijar zipper.Gravatar Erik Kuefler2015-09-03
| | | | | | | | | | | | | This is more than just a cosmetic issue. Since groovy and appengine rules depend directly on this target, the zipper gets built in the user's workspace whenever a groovy/appengine target is built. If the workspace is set to upgrade warnings to errors, this can cause builds to fail. -- Change-Id: I6c8b347df14098945c788411fc3e38f9c128596f Reviewed-on: https://bazel-review.googlesource.com/1951 MOS_MIGRATED_REVID=102223767
* Add support for compression in //third_party/ijar:zipperGravatar Damien Martin-Guillerez2015-08-31
| | | | | | | | | | | Add the 'C' flag to //third_party/ijar:zipper to try to compress files using the DEFLATE algorithm. To avoid regression, creation of uncompressed ZIP files is still the default. -- Change-Id: I8ad7182d8f6f152abd56ae472a406cbb8d39fb64 Reviewed-on: https://bazel-review.googlesource.com/#/c/1821/ MOS_MIGRATED_REVID=101925953
* Port to FreeBSD.Gravatar Doug Rabson2015-08-26
| | | | | | | -- Change-Id: I4e65cc583e758d2f7e45209ffcb37f6a871e2ed7 Reviewed-on: https://bazel-review.git.corp.google.com/#/c/1840 MOS_MIGRATED_REVID=101462155
* Correctly process "ScalaInlineInfo" attribute. This is new in Scala 2.11.7 ↵Gravatar Googler2015-08-24
| | | | | | | (and 2.12). -- MOS_MIGRATED_REVID=101358929
* Open-source full support for J2ObjC in Bazel, including dead code removal, ↵Gravatar Michael Thvedt2015-08-13
| | | | | | | and add an example. -- MOS_MIGRATED_REVID=100493818
* 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
* Add md5_test.cc to Bazel.Gravatar Ulf Adams2015-07-29
| | | | | -- MOS_MIGRATED_REVID=99284904
* Add googletest library to third_party (just the fused sources, 1.7.0).Gravatar Ulf Adams2015-07-28
|
* Fix some C++ compiler warnings to comply with -Wall.Gravatar Ulf Adams2015-07-27
| | | | | | | | | Some progress towards #311. -- Change-Id: I9276519d4a97d358b7c4f4e34a861522d75dd495 Reviewed-on: https://bazel-review.googlesource.com/#/c/1710 MOS_MIGRATED_REVID=99019961
* Add com.android.tools.layoutlib:layoutlib-api to android_common.Gravatar Lukacs T. Berki2015-07-21
| | | | Turns out, this is required by AndroidResourceProcessingAction.
* Add git_repository and new_git_repository workspace rules.Gravatar David Chen2015-07-17
| | | | | | | TESTED=Added integration tests. -- MOS_MIGRATED_REVID=98396197
* Add jgit and slf4j to third_partyGravatar Philipp Wollermann2015-07-17
|
* Description redacted.Gravatar liuhuahang2015-07-13
| | | | | | | -- Change-Id: I38630cd7d76d19af97e896bb4be78f357fe8b670 Reviewed-on: https://bazel-review.googlesource.com/#/c/1600/ MOS_MIGRATED_REVID=98106930
* Fix zipper for empty filesGravatar Kristina Chodorow2015-07-02
| | | | | | | It was erroring out because it could not mmap an empty file. -- MOS_MIGRATED_REVID=97338974
* Update Error Prone versionGravatar Liam Miller-Cushon2015-06-30
| | | | | -- MOS_MIGRATED_REVID=97248851
* Add missing transitive dependencies of Error Prone.Gravatar Liam Miller-Cushon2015-06-29
| | | | | | | Fixes #265 -- MOS_MIGRATED_REVID=97140486
* Update error-prone-javac version to javac-1.9.0-dev-r2644-2Gravatar Liam Miller-Cushon2015-06-29
| | | | | -- MOS_MIGRATED_REVID=97135891
* Ijar's zipper: fallback when external attributes is unsetGravatar Damien Martin-Guillerez2015-06-29
| | | | | | | | Some ZIP files does not define external attributes leading to wrong uncompression by the zipper of ijar. -- MOS_MIGRATED_REVID=97117828
* Open source AarGeneratorAction and AndroidResourceProcessingAction.Gravatar Andrew Pellegrini2015-06-26
| | | | | -- MOS_MIGRATED_REVID=96883818
* Add android_common to third_party at version 23.1.3.Gravatar Andrew Pellegrini2015-06-25
|
* Removed Truth 0.24+ binary from third_partyGravatar Damien Martin-Guillerez2015-06-25
|
* Update Error Prone to 2.0.4Gravatar Liam Miller-Cushon2015-06-25
| | | | | -- MOS_MIGRATED_REVID=96816237
* Re-add the maven-repository-metadata jar to Bazel.Gravatar Michael Staib2015-06-24
| | | | | -- MOS_MIGRATED_REVID=96722918
* Update Truth for Bazel to 0.27.Gravatar Philipp Wollermann2015-06-23
| | | | | -- MOS_MIGRATED_REVID=96566439
* Add truth-0.27.jar to third_party/truth.Gravatar Philipp Wollermann2015-06-22
|