aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/BUILD
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-06-30 14:08:14 +0000
committerGravatar Lukacs Berki <lberki@google.com>2016-07-01 07:07:56 +0000
commitf6c24decc9cea46bfba41efb07f11b1ce7415cd0 (patch)
tree7f41285c9961843716e8ee663202e20a25f5ab78 /third_party/BUILD
parent5e546d55993d5e5d37ad7500c71b3083f0f85c0b (diff)
GPLv2 + Classpath exception compliance: ship the source of checker_framework
Also add missing dependencie on the javacutil tooling. -- Change-Id: Idba4ddc2e79da4916925327e2f15337e86658a5d Reviewed-on: https://bazel-review.googlesource.com/#/c/3915 MOS_MIGRATED_REVID=126298979
Diffstat (limited to 'third_party/BUILD')
-rw-r--r--third_party/BUILD15
1 files changed, 6 insertions, 9 deletions
diff --git a/third_party/BUILD b/third_party/BUILD
index d4afc7f070..ec5cbcb14a 100644
--- a/third_party/BUILD
+++ b/third_party/BUILD
@@ -16,6 +16,8 @@ filegroup(
"//third_party/java/jdk/langtools:srcs",
"//third_party/java/jdk/javabuilder:srcs",
"//third_party/javascript/bootstrap:srcs",
+ "//third_party/checker_framework_dataflow:srcs",
+ "//third_party/checker_framework_javacutil:srcs",
"//third_party/jformatstring:srcs",
"//third_party/protobuf:srcs",
"//third_party/py/concurrent:srcs",
@@ -32,6 +34,8 @@ filegroup(
filegroup(
name = "gpl-srcs",
srcs = [
+ "//third_party/checker_framework_dataflow:srcs",
+ "//third_party/checker_framework_javacutil:srcs",
"//third_party/jformatstring:srcs",
],
)
@@ -282,11 +286,11 @@ java_import(
"error_prone/error_prone_annotation-2.0.9-20160129.jar",
],
exports = [
- ":checker_framework_dataflow",
":guava",
":jcip_annotations",
":jsr305",
":pcollections",
+ "//third_party/checker_framework_dataflow",
"//third_party/jformatstring",
],
)
@@ -305,18 +309,10 @@ java_import(
],
)
-java_import(
- name = "checker_framework_dataflow",
- jars = [
- "checker_framework_dataflow/dataflow-1.8.10.jar",
- ],
-)
-
# For bootstrapping JavaBuilder
filegroup(
name = "error_prone-jars",
srcs = [
- "checker_framework_dataflow/dataflow-1.8.10.jar",
"error_prone/error_prone_annotation-2.0.9-20160129.jar",
"error_prone/error_prone_annotations-2.0.9-20160129.jar",
"error_prone/error_prone_core-2.0.9-20160129.jar",
@@ -324,6 +320,7 @@ filegroup(
"jcip_annotations/jcip-annotations-1.0-1.jar",
"jsr305/jsr-305.jar",
"pcollections/pcollections-2.1.2.jar",
+ "//third_party/checker_framework_dataflow:bootstrap",
"//third_party/jformatstring:bootstrap",
],
)