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

Side by Side Diff: chrome/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 | « build/module_args/v8.gni ('k') | content/shell/android/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("//chrome/version.gni") 8 import("//chrome/version.gni")
9 import("//third_party/icu/config.gni") 9 import("//third_party/icu/config.gni")
10 import("channel.gni") 10 import("channel.gni")
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 deps = [ 324 deps = [
325 "//chrome:packed_resources", 325 "//chrome:packed_resources",
326 "//chrome:packed_extra_resources", 326 "//chrome:packed_extra_resources",
327 ] 327 ]
328 328
329 if (icu_use_data_file) { 329 if (icu_use_data_file) {
330 sources += [ "$root_build_dir/icudtl.dat" ] 330 sources += [ "$root_build_dir/icudtl.dat" ]
331 } 331 }
332 if (v8_use_external_startup_data) { 332 if (v8_use_external_startup_data) {
333 sources += [ 333 sources += [
334 "$root_gen_dir/natives_blob.bin", 334 "$root_build_dir/natives_blob.bin",
335 "$root_gen_dir/snapshot_blob.bin", 335 "$root_build_dir/snapshot_blob.bin",
336 ] 336 ]
337 } 337 }
338 } 338 }
339 339
340 chrome_shell_manifest = 340 chrome_shell_manifest =
341 "$target_gen_dir/chrome_shell_manifest/AndroidManifest.xml" 341 "$target_gen_dir/chrome_shell_manifest/AndroidManifest.xml"
342 342
343 # GYP: //chrome/chrome_shell.gypi:chrome_shell_manifest 343 # GYP: //chrome/chrome_shell.gypi:chrome_shell_manifest
344 jinja_template("chrome_shell_manifest") { 344 jinja_template("chrome_shell_manifest") {
345 testonly = true 345 testonly = true
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 ] 511 ]
512 } 512 }
513 513
514 zip("chrome_version_srcjar") { 514 zip("chrome_version_srcjar") {
515 inputs = [ 515 inputs = [
516 chrome_version_java_file, 516 chrome_version_java_file,
517 ] 517 ]
518 output = "$target_gen_dir/$target_name.srcjar" 518 output = "$target_gen_dir/$target_name.srcjar"
519 base_dir = chrome_version_java_dir 519 base_dir = chrome_version_java_dir
520 } 520 }
OLDNEW
« no previous file with comments | « build/module_args/v8.gni ('k') | content/shell/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698