OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
7 import("//build/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
8 import("//third_party/icu/config.gni") | 8 import("//third_party/icu/config.gni") |
9 | 9 |
10 generate_jni("content_shell_jni_headers") { | 10 generate_jni("content_shell_jni_headers") { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 resource_dirs = [ "java/res" ] | 42 resource_dirs = [ "java/res" ] |
43 custom_package = "org.chromium.content_shell" | 43 custom_package = "org.chromium.content_shell" |
44 } | 44 } |
45 | 45 |
46 android_library("content_shell_java") { | 46 android_library("content_shell_java") { |
47 testonly = true | 47 testonly = true |
48 deps = [ | 48 deps = [ |
49 "//base:base_java", | 49 "//base:base_java", |
50 "//content/public/android:content_java", | 50 "//content/public/android:content_java", |
51 "//media/base/android:media_java", | 51 "//media/base/android:media_java", |
52 "//mojo/public/java:system", | |
53 "//net/android:net_java", | 52 "//net/android:net_java", |
| 53 "//third_party/mojo/src/mojo/public/java:system", |
54 "//ui/android:ui_java", | 54 "//ui/android:ui_java", |
55 ":content_shell_java_resources", | 55 ":content_shell_java_resources", |
56 ] | 56 ] |
57 DEPRECATED_java_in_dir = "java/src" | 57 DEPRECATED_java_in_dir = "java/src" |
58 } | 58 } |
59 | 59 |
60 content_shell_manifest = | 60 content_shell_manifest = |
61 "$target_gen_dir/content_shell_manifest/AndroidManifest.xml" | 61 "$target_gen_dir/content_shell_manifest/AndroidManifest.xml" |
62 | 62 |
63 jinja_template("content_shell_manifest") { | 63 jinja_template("content_shell_manifest") { |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 | 225 |
226 # GYP: //content/content_tests.gypi:chromium_android_linker_test_jni_headers | 226 # GYP: //content/content_tests.gypi:chromium_android_linker_test_jni_headers |
227 generate_jni("linker_test_jni_headers") { | 227 generate_jni("linker_test_jni_headers") { |
228 testonly = true | 228 testonly = true |
229 jni_package = "content/shell" | 229 jni_package = "content/shell" |
230 sources = [ | 230 sources = [ |
231 "linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.jav
a", | 231 "linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.jav
a", |
232 ] | 232 ] |
233 } | 233 } |
234 } | 234 } |
OLD | NEW |