OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/config/android/rules.gni") |
| 6 |
| 7 java_prebuilt("asm_java") { |
| 8 testonly = true |
| 9 jar_path = "lib/asm-5.0.1.jar" |
| 10 } |
| 11 |
| 12 java_prebuilt("asm_tree_java") { |
| 13 testonly = true |
| 14 jar_path = "lib/asm-tree-5.0.1.jar" |
| 15 deps = [ |
| 16 ":asm_java", |
| 17 ] |
| 18 } |
| 19 |
| 20 java_prebuilt("asm_analysis_java") { |
| 21 testonly = true |
| 22 jar_path = "lib/asm-analysis-5.0.1.jar" |
| 23 deps = [ |
| 24 ":asm_tree_java", |
| 25 ] |
| 26 } |
| 27 |
| 28 java_prebuilt("asm_commons_java") { |
| 29 testonly = true |
| 30 jar_path = "lib/asm-commons-5.0.1.jar" |
| 31 deps = [ |
| 32 ":asm_tree_java", |
| 33 ] |
| 34 } |
| 35 |
| 36 java_prebuilt("asm_util_java") { |
| 37 testonly = true |
| 38 jar_path = "lib/asm-util-5.0.1.jar" |
| 39 deps = [ |
| 40 ":asm_tree_java", |
| 41 ] |
| 42 } |
OLD | NEW |