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

Side by Side Diff: chrome/installer/mini_installer.gyp

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_tests_unit.gypi ('k') | chrome/interactive_ui_tests.isolate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'version_py': '<(DEPTH)/build/util/version.py', 3 'version_py': '<(DEPTH)/build/util/version.py',
4 'version_path': '../../chrome/VERSION', 4 'version_path': '../../chrome/VERSION',
5 'lastchange_path': '<(DEPTH)/build/util/LASTCHANGE', 5 'lastchange_path': '<(DEPTH)/build/util/LASTCHANGE',
6 # 'branding_dir' is set in the 'conditions' section at the bottom. 6 # 'branding_dir' is set in the 'conditions' section at the bottom.
7 'msvs_use_common_release': 0, 7 'msvs_use_common_release': 0,
8 'msvs_use_common_linker_extras': 0, 8 'msvs_use_common_linker_extras': 0,
9 'mini_installer_internal_deps%': 0, 9 'mini_installer_internal_deps%': 0,
10 'mini_installer_official_deps%': 0, 10 'mini_installer_official_deps%': 0,
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 }], 217 }],
218 ['icu_use_data_file_flag == 0', { 218 ['icu_use_data_file_flag == 0', {
219 'inputs': [ 219 'inputs': [
220 '<(PRODUCT_DIR)/icudt.dll', 220 '<(PRODUCT_DIR)/icudt.dll',
221 ], 221 ],
222 }, { # else icu_use_data_file_flag != 0 222 }, { # else icu_use_data_file_flag != 0
223 'inputs': [ 223 'inputs': [
224 '<(PRODUCT_DIR)/icudtl.dat', 224 '<(PRODUCT_DIR)/icudtl.dat',
225 ], 225 ],
226 }], 226 }],
227 ['v8_use_external_startup_data == 1', {
228 'inputs': [
229 '<(PRODUCT_DIR)/natives_blob.bin',
230 '<(PRODUCT_DIR)/snapshot_blob.bin',
231 ],
232 }],
227 ], 233 ],
228 'inputs': [ 234 'inputs': [
229 '<(create_installer_archive_py_path)', 235 '<(create_installer_archive_py_path)',
230 '<(PRODUCT_DIR)/chrome.exe', 236 '<(PRODUCT_DIR)/chrome.exe',
231 '<(PRODUCT_DIR)/chrome.dll', 237 '<(PRODUCT_DIR)/chrome.dll',
232 '<(PRODUCT_DIR)/nacl64.exe', 238 '<(PRODUCT_DIR)/nacl64.exe',
233 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', 239 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe',
234 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', 240 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe',
235 '<(PRODUCT_DIR)/locales/en-US.pak', 241 '<(PRODUCT_DIR)/locales/en-US.pak',
236 ], 242 ],
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 'variables': { 313 'variables': {
308 'branding_dir': '../app/theme/google_chrome', 314 'branding_dir': '../app/theme/google_chrome',
309 }, 315 },
310 }, { # else branding!="Chrome" 316 }, { # else branding!="Chrome"
311 'variables': { 317 'variables': {
312 'branding_dir': '../app/theme/chromium', 318 'branding_dir': '../app/theme/chromium',
313 }, 319 },
314 }], 320 }],
315 ], 321 ],
316 } 322 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/interactive_ui_tests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698