Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 deps = [ | |
| 10 "//base", | |
| 11 "//content/public/browser", | |
| 12 "//content/public/common", | |
| 13 "//net", | |
| 14 "//skia", | |
| 15 "//ui/base", | |
| 16 "//ui/gfx", | |
| 17 "//ui/gfx/geometry", | |
| 18 ":web_contents_delegate_android_jni_headers", | |
|
brettw
2014/10/09 17:05:31
This should be first.
cjhopman
2014/10/10 01:10:09
Done.
| |
| 19 ] | |
| 20 | |
| 21 sources = [ | |
| 22 "color_chooser_android.cc", | |
| 23 "color_chooser_android.h", | |
| 24 "component_jni_registrar.cc", | |
| 25 "component_jni_registrar.h", | |
| 26 "validation_message_bubble_android.cc", | |
| 27 "validation_message_bubble_android.h", | |
| 28 "web_contents_delegate_android.cc", | |
| 29 "web_contents_delegate_android.h", | |
| 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 } | |
| OLD | NEW |