File tree Expand file tree Collapse file tree
src/tools/javatests/com/google/devtools/build/android/dexer Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -84,12 +84,13 @@ genrule(
8484 echo "package j$$.test; public class Foo {}" > "$${tmpdir}/Foo.java"
8585 echo "package zzz; public class Bar {}" > "$${tmpdir}/Bar.java"
8686 echo "package aaa; public class Baz {}" > "$${tmpdir}/Baz.java"
87- $(location @bazel_tools//tools/zip:zipper) c $@ \\
88- "j$$/test/Foo.java=$${tmpdir}/Foo.java" \\
89- "zzz/Bar.java=$${tmpdir}/Bar.java" \\
90- "aaa/Baz.java=$${tmpdir}/Baz.java"
87+ $(location //tools/jdk:singlejar) --output $@ \\
88+ --resources \\
89+ "$${tmpdir}/Foo.java:j$$/test/Foo.java" \\
90+ "$${tmpdir}/Bar.java:zzz/Bar.java" \\
91+ "$${tmpdir}/Baz.java:aaa/Baz.java"
9192 rm -rf "$${tmpdir}" """ ,
92- tools = ["@bazel_tools //tools/zip:zipper " ],
93+ tools = ["//tools/jdk:singlejar " ],
9394)
9495
9596java_library (
You can’t perform that action at this time.
0 commit comments