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

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: Updated DEPS file. Created 4 years, 6 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
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") {
8 testonly = true
9 jar_path = "lib/asm-5.0.1.jar"
10 }
11
12 java_prebuilt("asm-tree") {
13 testonly = true
14 jar_path = "lib/asm-tree-5.0.1.jar"
15 deps = [
16 ":asm",
17 ]
18 }
19
20 java_prebuilt("asm-analysis") {
21 testonly = true
22 jar_path = "lib/asm-analysis-5.0.1.jar"
23 deps = [
24 ":asm-tree",
25 ]
26 }
27
28 java_prebuilt("asm-commons") {
29 testonly = true
30 jar_path = "lib/asm-commons-5.0.1.jar"
31 deps = [
32 ":asm-tree",
33 ]
34 }
35
36 java_prebuilt("asm-util") {
37 testonly = true
38 jar_path = "lib/asm-util-5.0.1.jar"
39 deps = [
40 ":asm-tree",
41 ]
42 }
OLDNEW
« no previous file with comments | « DEPS ('k') | third_party/ow2-asm/LICENSE » ('j') | third_party/ow2-asm/README.chromium » ('J')

Powered by Google App Engine
This is Rietveld 408576698