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

Unified Diff: chrome/android/java/templates/BUILD.gn

Issue 2501153002: Build public monochrome (Closed)
Patch Set: address comments Created 4 years, 1 month 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
Index: chrome/android/java/templates/BUILD.gn
diff --git a/chrome/android/java/templates/BUILD.gn b/chrome/android/java/templates/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..52a597c2d26dbb3ef0af67717943b8850d22ccc0
--- /dev/null
+++ b/chrome/android/java/templates/BUILD.gn
@@ -0,0 +1,27 @@
+# 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/config.gni")
+import("//build/config/android/rules.gni")
+import("monochrome_application.gni")
+
+monochrome_application = "$target_gen_dir/public_monochrome_application/org/chromium/chrome/browser/MonochromeApplication.java"
+
+generate_monochrome_application("monochrome_application_class") {
+ package = "org.chromium.chrome.browser"
+ super_class = "ChromeApplication"
+ monochrome_application_class = "MonochromeApplication"
+ output = monochrome_application
+}
+
+android_library("public_monochrome_java") {
+ deps = [
+ ":monochrome_application_class",
+ "//android_webview/glue",
+ "//base:base_java",
+ "//chrome/android:chrome_java",
+ "//content/public/android:content_java",
+ ]
+ java_files = [ monochrome_application ]
+}
« no previous file with comments | « chrome/android/java/AndroidManifest_monochrome.xml ('k') | chrome/android/java/templates/MonochromeApplication.template » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698