forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name V8 snapshot according to target architecture (32/64 bit).
Renaming webview copy of V8 snapshot to be able to differentiate between snapshots for 32- and 64 bit architectures. This is done so that snapshots for different architectures can be repacked into the same APK. BUG=455699 Review URL: https://codereview.chromium.org/903793002 Cr-Commit-Position: refs/heads/master@{#315314}
- Loading branch information
gsennton
authored and
Commit bot
committed
Feb 9, 2015
1 parent
283a060
commit 0ae506b
Showing
5 changed files
with
107 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
'variables': { | ||
'snapshot_additional_input_paths': [], | ||
'snapshot_copy_files': [], | ||
'conditions': [ | ||
['v8_use_external_startup_data==1 and (target_arch=="arm" or target_arch=="x86" or target_arch=="mips")', { | ||
'snapshot_additional_input_paths': [ | ||
'<(asset_location)/natives_blob_32.bin', | ||
'<(asset_location)/snapshot_blob_32.bin', | ||
], | ||
'snapshot_copy_files': [ | ||
'<(PRODUCT_DIR)/natives_blob_32.bin', | ||
'<(PRODUCT_DIR)/snapshot_blob_32.bin', | ||
], | ||
}], | ||
['v8_use_external_startup_data==1 and (target_arch=="arm64" or target_arch=="x86_64" or target_arch=="mips64")', { | ||
'snapshot_additional_input_paths': [ | ||
'<(asset_location)/natives_blob_64.bin', | ||
'<(asset_location)/snapshot_blob_64.bin', | ||
], | ||
'snapshot_copy_files': [ | ||
'<(PRODUCT_DIR)/natives_blob_64.bin', | ||
'<(PRODUCT_DIR)/snapshot_blob_64.bin', | ||
], | ||
}], | ||
], | ||
}, | ||
} |