summaryrefslogtreecommitdiffstats
path: root/chrome/android/BUILD.gn
diff options
context:
space:
mode:
authormichaelbai <michaelbai@chromium.org>2015-10-23 11:46:10 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-23 18:49:07 +0000
commited31140dee44c06e6398e92e1afb9c047c9137e6 (patch)
tree2ee30c514695f5ed4e1b45112a897831761870e1 /chrome/android/BUILD.gn
parentfc76b7e7f854c3791e683f3c9e81d27d9812be78 (diff)
downloadchromium_src-ed31140dee44c06e6398e92e1afb9c047c9137e6.zip
chromium_src-ed31140dee44c06e6398e92e1afb9c047c9137e6.tar.gz
chromium_src-ed31140dee44c06e6398e92e1afb9c047c9137e6.tar.bz2
Orignal patch
https://codereview.chromium.org/1400953002/ Switch Chrome Android using v8 arch specific external data name For 32-bit, natives_blob_32.bin and snapshot_blob_32.bin are used. For 64-bit, natives_blob_64.bin and natives_blob_64.bin are used. This patch also removed the existing v8 startup data in destination directory by using copy_ex to remove directory first. BUG=540788 TBR=jochen@chromium.org,dpranke@chromium.org,halliwell@chromium.org,jbudorick@chromium.org,mef@chromium.org,rmcilroy@chromium.org,dtrainor@chromium.org,cpu@chromium.org Review URL: https://codereview.chromium.org/1417753004 Cr-Commit-Position: refs/heads/master@{#355843}
Diffstat (limited to 'chrome/android/BUILD.gn')
-rw-r--r--chrome/android/BUILD.gn6
1 files changed, 2 insertions, 4 deletions
diff --git a/chrome/android/BUILD.gn b/chrome/android/BUILD.gn
index 7480244..1229c40 100644
--- a/chrome/android/BUILD.gn
+++ b/chrome/android/BUILD.gn
@@ -357,10 +357,8 @@ copy_ex("chrome_public_apk_assets") {
]
if (v8_use_external_startup_data) {
- sources += [
- "$root_out_dir/natives_blob.bin",
- "$root_out_dir/snapshot_blob.bin",
- ]
+ renaming_sources = v8_external_startup_data_renaming_sources
+ renaming_destinations = v8_external_startup_data_renaming_destinations
deps += [ "//v8" ]
}