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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 } | 136 } |
137 | 137 |
138 android_assets("content_shell_assets") { | 138 android_assets("content_shell_assets") { |
139 sources = [ | 139 sources = [ |
140 "$root_out_dir/content_shell.pak", | 140 "$root_out_dir/content_shell.pak", |
141 ] | 141 ] |
142 disable_compression = true | 142 disable_compression = true |
143 deps = [ | 143 deps = [ |
144 "//content/shell:pak", | 144 "//content/shell:pak", |
145 "//third_party/icu:icu_assets", | 145 "//third_party/icu:icu_assets", |
| 146 "//tools/v8_context_snapshot:v8_context_snapshot_assets", |
146 "//v8:v8_external_startup_data_assets", | 147 "//v8:v8_external_startup_data_assets", |
147 ] | 148 ] |
148 } | 149 } |
149 | 150 |
150 android_apk("content_shell_apk") { | 151 android_apk("content_shell_apk") { |
151 testonly = true | 152 testonly = true |
152 deps = [ | 153 deps = [ |
153 ":content_shell_apk_java", | 154 ":content_shell_apk_java", |
154 ":content_shell_assets", | 155 ":content_shell_assets", |
155 ":content_shell_java", | 156 ":content_shell_java", |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 testonly = true | 318 testonly = true |
318 deps = [ | 319 deps = [ |
319 ":content_shell_java", | 320 ":content_shell_java", |
320 "//base:base_java", | 321 "//base:base_java", |
321 "//content/public/android:content_java", | 322 "//content/public/android:content_java", |
322 "//testing/android/native_test:native_test_java", | 323 "//testing/android/native_test:native_test_java", |
323 "//ui/android:ui_java", | 324 "//ui/android:ui_java", |
324 ] | 325 ] |
325 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] | 326 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] |
326 } | 327 } |
OLD | NEW |