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

Side by Side Diff: chrome/chrome_android_paks.gypi

Issue 594603003: Infrastructure for reading V8's initial snapshot from external files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync Created 6 years, 1 month 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 | « chrome/chrome.isolate ('k') | chrome/chrome_tests.gypi » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 5 'variables': {
6 'chrome_android_pak_output_folder': '<@(PRODUCT_DIR)/../assets/<(package_nam e)', 6 'chrome_android_pak_output_folder': '<@(PRODUCT_DIR)/../assets/<(package_nam e)',
7 'chrome_android_pak_input_resources': [ 7 'chrome_android_pak_input_resources': [
8 '<(PRODUCT_DIR)/resources.pak', 8 '<(PRODUCT_DIR)/resources.pak',
9 '<(PRODUCT_DIR)/chrome_100_percent.pak', 9 '<(PRODUCT_DIR)/chrome_100_percent.pak',
10 '<(PRODUCT_DIR)/locales/am.pak', 10 '<(PRODUCT_DIR)/locales/am.pak',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 ], 102 ],
103 'conditions': [ 103 'conditions': [
104 ['icu_use_data_file_flag==1', { 104 ['icu_use_data_file_flag==1', {
105 'chrome_android_pak_input_resources': [ 105 'chrome_android_pak_input_resources': [
106 '<(PRODUCT_DIR)/icudtl.dat', 106 '<(PRODUCT_DIR)/icudtl.dat',
107 ], 107 ],
108 'chrome_android_pak_output_resources': [ 108 'chrome_android_pak_output_resources': [
109 '<(chrome_android_pak_output_folder)/icudtl.dat', 109 '<(chrome_android_pak_output_folder)/icudtl.dat',
110 ], 110 ],
111 }], 111 }],
112 ['v8_use_external_startup_data==1', {
113 'chrome_android_pak_input_resources': [
114 '<(PRODUCT_DIR)/natives_blob.bin',
115 '<(PRODUCT_DIR)/snapshot_blob.bin',
116 ],
117 'chrome_android_pak_output_resources': [
118 '<(chrome_android_pak_output_folder)/natives_blob.bin',
119 '<(chrome_android_pak_output_folder)/snapshot_blob.bin',
120 ],
121 }],
112 ], 122 ],
113 }, 123 },
114 } 124 }
115 125
OLDNEW
« no previous file with comments | « chrome/chrome.isolate ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698