forked from bazelbuild/bazel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8cde95b
commit b0cc87f
Showing
10 changed files
with
500 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Description: | ||
# JaCoCo is a free code coverage library for Java, created by the EclEmma team. | ||
|
||
licenses(["reciprocal"]) # EPL 1.0 (Eclipse Public License) | ||
|
||
exports_files(["LICENSE"]) | ||
|
||
package(default_visibility = ["//visibility:public"]) | ||
|
||
filegroup( | ||
name = "srcs", | ||
srcs = glob(["**"]), | ||
) | ||
|
||
java_import( | ||
name = "agent", | ||
jars = ["org.jacoco.agent-0.7.5.201505241946.jar"], | ||
srcjar = "org.jacoco.agent-0.7.5.201505241946-src.jar", | ||
) | ||
|
||
java_import( | ||
name = "core", | ||
jars = ["org.jacoco.core-0.7.5.201505241946.jar"], | ||
srcjar = "org.jacoco.core-0.7.5.201505241946-src.jar", | ||
exports = [ | ||
"//third_party:asm", | ||
"//third_party:asm-commons", | ||
"//third_party:asm-tree", | ||
], | ||
) | ||
|
||
filegroup( | ||
name = "core-jars", | ||
srcs = ["org.jacoco.core-0.7.5.201505241946.jar"], | ||
) | ||
|
||
java_import( | ||
name = "report", | ||
jars = ["org.jacoco.report-0.7.5.201505241946.jar"], | ||
srcjar = "org.jacoco.report-0.7.5.201505241946-src.jar", | ||
exports = [ | ||
":core", | ||
"//third_party:asm", | ||
], | ||
) | ||
|
||
java_import( | ||
name = "blaze-agent", | ||
jars = ["jacocoagent.jar"], | ||
) | ||
|
||
java_import( | ||
name = "blaze-agent-neverlink", | ||
jars = ["jacocoagent.jar"], | ||
neverlink = 1, | ||
) | ||
|
||
java_import( | ||
name = "blaze-instrumentation", | ||
jars = ["org.jacoco.ant-0.7.5.201505241946-nodeps.jar"], | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.