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

Side by Side Diff: android_webview/snapshot_copying.gypi

Issue 903793002: Name V8 snapshot according to target architecture (32/64 bit). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added comment Created 5 years, 10 months 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 | « android_webview/lib/main/aw_main_delegate.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 'variables': {
3 'snapshot_additional_input_paths': [],
4 'snapshot_copy_files': [],
5 'conditions': [
6 ['v8_use_external_startup_data==1 and (target_arch=="arm" or target_arch== "x86" or target_arch=="mips")', {
7 'snapshot_additional_input_paths': [
8 '<(asset_location)/natives_blob_32.bin',
9 '<(asset_location)/snapshot_blob_32.bin',
10 ],
11 'snapshot_copy_files': [
12 '<(PRODUCT_DIR)/natives_blob_32.bin',
13 '<(PRODUCT_DIR)/snapshot_blob_32.bin',
14 ],
15 }],
16 ['v8_use_external_startup_data==1 and (target_arch=="arm64" or target_arch =="x86_64" or target_arch=="mips64")', {
17 'snapshot_additional_input_paths': [
18 '<(asset_location)/natives_blob_64.bin',
19 '<(asset_location)/snapshot_blob_64.bin',
20 ],
21 'snapshot_copy_files': [
22 '<(PRODUCT_DIR)/natives_blob_64.bin',
23 '<(PRODUCT_DIR)/snapshot_blob_64.bin',
24 ],
25 }],
26 ],
27 },
28 }
OLDNEW
« no previous file with comments | « android_webview/lib/main/aw_main_delegate.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698