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("//base/android/jni_generator/jni_exception_list.gni") | 5 import("//base/android/jni_generator/jni_exception_list.gni") |
6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 } | 123 } |
124 | 124 |
125 android_assets("content_shell_assets") { | 125 android_assets("content_shell_assets") { |
126 sources = [ | 126 sources = [ |
127 "$root_out_dir/content_shell.pak", | 127 "$root_out_dir/content_shell.pak", |
128 ] | 128 ] |
129 disable_compression = true | 129 disable_compression = true |
130 deps = [ | 130 deps = [ |
131 "//content/shell:pak", | 131 "//content/shell:pak", |
132 "//third_party/icu:icu_assets", | 132 "//third_party/icu:icu_assets", |
| 133 "//tools/blink_v8_snapshot:blink_v8_snapshot_assets", |
133 "//v8:v8_external_startup_data_assets", | 134 "//v8:v8_external_startup_data_assets", |
134 ] | 135 ] |
135 } | 136 } |
136 | 137 |
137 android_apk("content_shell_apk") { | 138 android_apk("content_shell_apk") { |
138 testonly = true | 139 testonly = true |
139 deps = [ | 140 deps = [ |
140 ":content_shell_apk_java", | 141 ":content_shell_apk_java", |
141 ":content_shell_assets", | 142 ":content_shell_assets", |
142 ":content_shell_java", | 143 ":content_shell_java", |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 testonly = true | 306 testonly = true |
306 deps = [ | 307 deps = [ |
307 ":content_shell_java", | 308 ":content_shell_java", |
308 "//base:base_java", | 309 "//base:base_java", |
309 "//content/public/android:content_java", | 310 "//content/public/android:content_java", |
310 "//testing/android/native_test:native_test_java", | 311 "//testing/android/native_test:native_test_java", |
311 "//ui/android:ui_java", | 312 "//ui/android:ui_java", |
312 ] | 313 ] |
313 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] | 314 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] |
314 } | 315 } |
OLD | NEW |