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_overrides/v8.gni") | 7 import("//build_overrides/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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 disable_compression = true | 93 disable_compression = true |
94 deps = [ | 94 deps = [ |
95 "//content/shell:pak", | 95 "//content/shell:pak", |
96 "//third_party/icu:icu_assets", | 96 "//third_party/icu:icu_assets", |
97 "//v8:v8_external_startup_data_assets", | 97 "//v8:v8_external_startup_data_assets", |
98 ] | 98 ] |
99 } | 99 } |
100 | 100 |
101 android_apk("content_shell_apk") { | 101 android_apk("content_shell_apk") { |
102 testonly = true | 102 testonly = true |
103 data_deps = [ | |
104 # "//tools/android/forwarder", | |
105 ] | |
106 deps = [ | 103 deps = [ |
107 ":content_shell_apk_java", | 104 ":content_shell_apk_java", |
108 ":content_shell_apk_resources", | 105 ":content_shell_apk_resources", |
109 ":content_shell_assets", | 106 ":content_shell_assets", |
110 ":content_shell_java", | 107 ":content_shell_java", |
111 ":content_shell_manifest", | 108 ":content_shell_manifest", |
112 ":libcontent_shell_content_view", | 109 ":libcontent_shell_content_view", |
113 "//base:base_java", | 110 "//base:base_java", |
114 "//content/public/android:content_java", | 111 "//content/public/android:content_java", |
115 "//media/base/android:media_java", | 112 "//media/base/android:media_java", |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 testonly = true | 227 testonly = true |
231 deps = [ | 228 deps = [ |
232 ":content_shell_java", | 229 ":content_shell_java", |
233 "//base:base_java", | 230 "//base:base_java", |
234 "//content/public/android:content_java", | 231 "//content/public/android:content_java", |
235 "//testing/android/native_test:native_test_java", | 232 "//testing/android/native_test:native_test_java", |
236 "//ui/android:ui_java", | 233 "//ui/android:ui_java", |
237 ] | 234 ] |
238 DEPRECATED_java_in_dir = "browsertests/src" | 235 DEPRECATED_java_in_dir = "browsertests/src" |
239 } | 236 } |
OLD | NEW |