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

Unified Diff: components/dom_distiller/android/BUILD.gn

Issue 570203002: Make chrome_shell_apk build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-chrome-jamesr
Patch Set: Rebase add chrome_version_java/page_connection_info_javagen Created 6 years, 2 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 | « components/dom_distiller.gypi ('k') | components/enhanced_bookmarks.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/dom_distiller/android/BUILD.gn
diff --git a/components/dom_distiller/android/BUILD.gn b/components/dom_distiller/android/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..02490165ecda2b7d0c14aff2dbaada17ee4f3d43
--- /dev/null
+++ b/components/dom_distiller/android/BUILD.gn
@@ -0,0 +1,42 @@
+# Copyright 2014 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")
+
+
+# GYP: //components/dom_distiller.gypi:dom_distiller_core_java
+android_library("dom_distiller_core_java") {
+ deps = [
+ "//base:base_java",
+ ]
+
+ srcjar_deps = [
+ ":dom_distiller_core_font_family_javagen",
+ ":dom_distiller_core_theme_javagen",
+ ]
+
+ DEPRECATED_java_in_dir = "java/src"
+}
+
+# GYP: //components/dom_distiller.gypi:dom_distiller_core_font_family_java
+java_cpp_template("dom_distiller_core_font_family_javagen") {
+ package_name = "org/chromium/components/dom_distiller/core"
+ sources = [
+ "java/src/org/chromium/components/dom_distiller/core/FontFamily.template"
+ ]
+ inputs = [
+ "../core/font_family_list.h"
+ ]
+}
+
+# GYP: //components/dom_distiller.gypi:dom_distiller_core_font_family_java
+java_cpp_template("dom_distiller_core_theme_javagen") {
+ package_name = "org/chromium/components/dom_distiller/core"
+ sources = [
+ "java/src/org/chromium/components/dom_distiller/core/Theme.template"
+ ]
+ inputs = [
+ "../core/theme_list.h"
+ ]
+}
« no previous file with comments | « components/dom_distiller.gypi ('k') | components/enhanced_bookmarks.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698