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

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

Issue 2049563002: [Third Party] Add ow2-asm jars to Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed - to _ Created 4 years, 5 months 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
« no previous file with comments | « DEPS ('k') | third_party/ow2_asm/LICENSE » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « DEPS ('k') | third_party/ow2_asm/LICENSE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698