| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 dest = content_shell_assets_dir | 95 dest = content_shell_assets_dir |
| 96 sources = [ | 96 sources = [ |
| 97 "$root_out_dir/content_shell.pak", | 97 "$root_out_dir/content_shell.pak", |
| 98 ] | 98 ] |
| 99 | 99 |
| 100 if (icu_use_data_file) { | 100 if (icu_use_data_file) { |
| 101 sources += [ "$root_build_dir/icudtl.dat" ] | 101 sources += [ "$root_build_dir/icudtl.dat" ] |
| 102 } | 102 } |
| 103 if (v8_use_external_startup_data) { | 103 if (v8_use_external_startup_data) { |
| 104 sources += [ | 104 sources += [ |
| 105 "$root_gen_dir/natives_blob.bin", | 105 "$root_build_dir/natives_blob.bin", |
| 106 "$root_gen_dir/snapshot_blob.bin", | 106 "$root_build_dir/snapshot_blob.bin", |
| 107 ] | 107 ] |
| 108 } | 108 } |
| 109 } | 109 } |
| 110 | 110 |
| 111 android_apk("content_shell_apk") { | 111 android_apk("content_shell_apk") { |
| 112 use_chromium_linker = true | 112 use_chromium_linker = true |
| 113 testonly = true | 113 testonly = true |
| 114 datadeps = [ | 114 datadeps = [ |
| 115 # "//tools/android/forwarder", | 115 # "//tools/android/forwarder", |
| 116 ] | 116 ] |
| (...skipping 108 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 |