Index: third_party/ow2-asm/BUILD.gn |
diff --git a/third_party/ow2-asm/BUILD.gn b/third_party/ow2-asm/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e348258fd3b735e44cb794b108ee01984c5463c3 |
--- /dev/null |
+++ b/third_party/ow2-asm/BUILD.gn |
@@ -0,0 +1,42 @@ |
+# Copyright 2016 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+import("//build/config/android/rules.gni") |
+ |
+java_prebuilt("asm") { |
+ testonly = true |
+ jar_path = "lib/asm-5.0.1.jar" |
+} |
+ |
+java_prebuilt("asm-tree") { |
+ testonly = true |
+ jar_path = "lib/asm-tree-5.0.1.jar" |
+ deps = [ |
+ ":asm", |
+ ] |
+} |
+ |
+java_prebuilt("asm-analysis") { |
+ testonly = true |
+ jar_path = "lib/asm-analysis-5.0.1.jar" |
+ deps = [ |
+ ":asm-tree", |
+ ] |
+} |
+ |
+java_prebuilt("asm-commons") { |
+ testonly = true |
+ jar_path = "lib/asm-commons-5.0.1.jar" |
+ deps = [ |
+ ":asm-tree", |
+ ] |
+} |
+ |
+java_prebuilt("asm-util") { |
+ testonly = true |
+ jar_path = "lib/asm-util-5.0.1.jar" |
+ deps = [ |
+ ":asm-tree", |
+ ] |
+} |