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

Unified Diff: components/web_contents_delegate_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/web_contents_delegate_android.gypi ('k') | content/public/test/android/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/web_contents_delegate_android/BUILD.gn
diff --git a/components/web_contents_delegate_android/BUILD.gn b/components/web_contents_delegate_android/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..541df1a81ca449f3e1cc975ffaaa3bb3e6eece1a
--- /dev/null
+++ b/components/web_contents_delegate_android/BUILD.gn
@@ -0,0 +1,52 @@
+# 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/web_contents_delegate_android:web_contents_delegate_android
+static_library("web_contents_delegate_android") {
+ sources = [
+ "color_chooser_android.cc",
+ "color_chooser_android.h",
+ "component_jni_registrar.cc",
+ "component_jni_registrar.h",
+ "validation_message_bubble_android.cc",
+ "validation_message_bubble_android.h",
+ "web_contents_delegate_android.cc",
+ "web_contents_delegate_android.h",
+ ]
+
+ deps = [
+ ":web_contents_delegate_android_jni_headers",
+ "//base",
+ "//content/public/browser",
+ "//content/public/common",
+ "//net",
+ "//skia",
+ "//ui/base",
+ "//ui/gfx",
+ "//ui/gfx/geometry",
+ ]
+}
+
+# GYP: //components/web_contents_delegate_android:web_contents_delegate_android_java
+android_library("web_contents_delegate_android_java") {
+ deps = [
+ "//base:base_java",
+ "//ui/android:ui_java",
+ "//content/public/android:content_java",
+ "//content/public/android:content_java_resources",
+ ]
+ DEPRECATED_java_in_dir = "android/java/src"
+}
+
+# GYP: //components/web_contents_delegate_android:web_contents_delegate_android_jni_headers
+generate_jni("web_contents_delegate_android_jni_headers") {
+ sources = [
+ "android/java/src/org/chromium/components/web_contents_delegate_android/ColorChooserAndroid.java",
+ "android/java/src/org/chromium/components/web_contents_delegate_android/ValidationMessageBubble.java",
+ "android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java",
+ ]
+ jni_package = "web_contents_delegate_android"
+}
« no previous file with comments | « components/web_contents_delegate_android.gypi ('k') | content/public/test/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698