Skip to content

Commit

Permalink
Add asm-tree and jacoco
Browse files Browse the repository at this point in the history
  • Loading branch information
hermione521 committed Dec 1, 2016
1 parent 8cde95b commit b0cc87f
Show file tree
Hide file tree
Showing 10 changed files with 500 additions and 0 deletions.
Binary file added third_party/asm/asm-tree-5.0.4.jar
Binary file not shown.
61 changes: 61 additions & 0 deletions third_party/java/jacoco/BUILD
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"],
)
439 changes: 439 additions & 0 deletions third_party/java/jacoco/LICENSE

Large diffs are not rendered by default.

Binary file added third_party/java/jacoco/jacocoagent.jar
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.

0 comments on commit b0cc87f

Please sign in to comment.