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

Unified Diff: components/bookmarks/common/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/bookmarks.gypi ('k') | components/dom_distiller.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/bookmarks/common/android/BUILD.gn
diff --git a/components/bookmarks/common/android/BUILD.gn b/components/bookmarks/common/android/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..aa628827861d87629c4b4a9f793ac8221b70ddc9
--- /dev/null
+++ b/components/bookmarks/common/android/BUILD.gn
@@ -0,0 +1,35 @@
+# 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/bookmarks.gyp:bookmarks_java
+android_library("bookmarks_java") {
+ deps = [
+ "//base:base_java",
+ ]
+ srcjar_deps = [
+ ":bookmark_type_javagen",
+ ]
+ DEPRECATED_java_in_dir = "java/src"
+}
+
+# GYP: //components/bookmarks.gyp:bookmarks_jni_headers
+generate_jni("bookmarks_jni_headers") {
+ jni_package = "components/bookmarks"
+ sources = [
+ "java/src/org/chromium/components/bookmarks/BookmarkId.java"
+ ]
+}
+
+# GYP: //components/bookmarks.gyp:bookmarks_type_java
+java_cpp_template("bookmark_type_javagen") {
+ sources = [
+ "java/src/org/chromium/components/bookmarks/BookmarkType.template",
+ ]
+ package_name = "org/chromium/components/bookmarks"
+ inputs = [
+ "bookmark_type_list.h",
+ ]
+}
« no previous file with comments | « components/bookmarks.gypi ('k') | components/dom_distiller.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698