Commit 8d830a5a authored by michaelbai's avatar michaelbai Committed by Commit bot

Remove natives_blob.bin's arch dependence in Android.

BUG=620855

Review-Url: https://codereview.chromium.org/2074283002
Cr-Commit-Position: refs/heads/master@{#37200}
parent a53b9bf0
...@@ -515,8 +515,16 @@ if (is_android) { ...@@ -515,8 +515,16 @@ if (is_android) {
deps = [ deps = [
"//v8", "//v8",
] ]
renaming_sources = v8_external_startup_data_renaming_sources sources = [
renaming_destinations = v8_external_startup_data_renaming_destinations "$root_out_dir/natives_blob.bin",
]
renaming_sources = [ "$root_out_dir/snapshot_blob.bin" ]
if (current_cpu == "arm" || current_cpu == "x86" ||
current_cpu == "mipsel") {
renaming_destinations = [ "snapshot_blob_32.bin" ]
} else {
renaming_destinations = [ "snapshot_blob_64.bin" ]
}
disable_compression = true disable_compression = true
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment