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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | third_party/ow2_asm/LICENSE » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..a86953ccf113d1faa90db77a541ebac51a85d806
--- /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_java") {
+ testonly = true
+ jar_path = "lib/asm-5.0.1.jar"
+}
+
+java_prebuilt("asm_tree_java") {
+ testonly = true
+ jar_path = "lib/asm-tree-5.0.1.jar"
+ deps = [
+ ":asm_java",
+ ]
+}
+
+java_prebuilt("asm_analysis_java") {
+ testonly = true
+ jar_path = "lib/asm-analysis-5.0.1.jar"
+ deps = [
+ ":asm_tree_java",
+ ]
+}
+
+java_prebuilt("asm_commons_java") {
+ testonly = true
+ jar_path = "lib/asm-commons-5.0.1.jar"
+ deps = [
+ ":asm_tree_java",
+ ]
+}
+
+java_prebuilt("asm_util_java") {
+ testonly = true
+ jar_path = "lib/asm-util-5.0.1.jar"
+ deps = [
+ ":asm_tree_java",
+ ]
+}
« 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