Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: third_party/ow2_asm/BUILD.gn

Issue 2517203002: Reland of Add GN build rules to allow java_assertion_enabler to enable Java asserts. (Closed)
Patch Set: format nit Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/rules.gni") 5 import("//build/config/android/rules.gni")
6 6
7 java_prebuilt("asm_java") { 7 java_prebuilt("asm_java") {
8 testonly = true 8 # Not "testonly" because //build/android/java_assertion_enabler depends on it.
9 jar_path = "lib/asm-5.0.1.jar" 9 jar_path = "lib/asm-5.0.1.jar"
10 } 10 }
11 11
12 java_prebuilt("asm_tree_java") { 12 java_prebuilt("asm_tree_java") {
13 testonly = true 13 testonly = true
14 jar_path = "lib/asm-tree-5.0.1.jar" 14 jar_path = "lib/asm-tree-5.0.1.jar"
15 deps = [ 15 deps = [
16 ":asm_java", 16 ":asm_java",
17 ] 17 ]
18 } 18 }
(...skipping 14 matching lines...) Expand all
33 ] 33 ]
34 } 34 }
35 35
36 java_prebuilt("asm_util_java") { 36 java_prebuilt("asm_util_java") {
37 testonly = true 37 testonly = true
38 jar_path = "lib/asm-util-5.0.1.jar" 38 jar_path = "lib/asm-util-5.0.1.jar"
39 deps = [ 39 deps = [
40 ":asm_tree_java", 40 ":asm_tree_java",
41 ] 41 ]
42 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698