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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//build/config/android/rules.gni")
6
7 # GYP: //components/web_contents_delegate_android:web_contents_delegate_android
8 static_library("web_contents_delegate_android") {
9 sources = [
10 "color_chooser_android.cc",
11 "color_chooser_android.h",
12 "component_jni_registrar.cc",
13 "component_jni_registrar.h",
14 "validation_message_bubble_android.cc",
15 "validation_message_bubble_android.h",
16 "web_contents_delegate_android.cc",
17 "web_contents_delegate_android.h",
18 ]
19
20 deps = [
21 ":web_contents_delegate_android_jni_headers",
22 "//base",
23 "//content/public/browser",
24 "//content/public/common",
25 "//net",
26 "//skia",
27 "//ui/base",
28 "//ui/gfx",
29 "//ui/gfx/geometry",
30 ]
31 }
32
33 # GYP: //components/web_contents_delegate_android:web_contents_delegate_android_ java
34 android_library("web_contents_delegate_android_java") {
35 deps = [
36 "//base:base_java",
37 "//ui/android:ui_java",
38 "//content/public/android:content_java",
39 "//content/public/android:content_java_resources",
40 ]
41 DEPRECATED_java_in_dir = "android/java/src"
42 }
43
44 # GYP: //components/web_contents_delegate_android:web_contents_delegate_android_ jni_headers
45 generate_jni("web_contents_delegate_android_jni_headers") {
46 sources = [
47 "android/java/src/org/chromium/components/web_contents_delegate_android/Colo rChooserAndroid.java",
48 "android/java/src/org/chromium/components/web_contents_delegate_android/Vali dationMessageBubble.java",
49 "android/java/src/org/chromium/components/web_contents_delegate_android/WebC ontentsDelegateAndroid.java",
50 ]
51 jni_package = "web_contents_delegate_android"
52 }
OLDNEW
« 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