Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(340)

Side by Side Diff: content/shell/android/BUILD.gn

Issue 796903002: [GN] Set v8_use_external_snapshot_data for the same configurations as GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix location of natives_blob.bin and snapshot_blob.bin after their output was moved in V8 Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/android/BUILD.gn ('k') | net/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « chrome/android/BUILD.gn ('k') | net/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698