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

Side by Side Diff: chrome/installer/mini_installer.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: Fix android tests Created 6 years, 2 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
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 'dependencies': [ 5 'dependencies': [
6 '<@(chrome_dll_project)', 6 '<@(chrome_dll_project)',
7 '../chrome.gyp:chrome', 7 '../chrome.gyp:chrome',
8 '../chrome.gyp:chrome_nacl_win64', 8 '../chrome.gyp:chrome_nacl_win64',
9 '../chrome.gyp:default_extensions', 9 '../chrome.gyp:default_extensions',
10 '../chrome.gyp:setup', 10 '../chrome.gyp:setup',
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 }], 172 }],
173 ['icu_use_data_file_flag == 0', { 173 ['icu_use_data_file_flag == 0', {
174 'inputs': [ 174 'inputs': [
175 '<(PRODUCT_DIR)/icudt.dll', 175 '<(PRODUCT_DIR)/icudt.dll',
176 ], 176 ],
177 }, { # else icu_use_data_file_flag != 0 177 }, { # else icu_use_data_file_flag != 0
178 'inputs': [ 178 'inputs': [
179 '<(PRODUCT_DIR)/icudtl.dat', 179 '<(PRODUCT_DIR)/icudtl.dat',
180 ], 180 ],
181 }], 181 }],
182 ['v8_use_external_startup_data == 1', {
183 'inputs': [
184 '<(PRODUCT_DIR)/natives_blob.bin',
185 '<(PRODUCT_DIR)/snapshot_blob.bin',
186 ],
187 }],
182 ], 188 ],
183 'inputs': [ 189 'inputs': [
184 '<(create_installer_archive_py_path)', 190 '<(create_installer_archive_py_path)',
185 '<(PRODUCT_DIR)/chrome.exe', 191 '<(PRODUCT_DIR)/chrome.exe',
186 '<@(chrome_dll_path)', 192 '<@(chrome_dll_path)',
187 '<(PRODUCT_DIR)/nacl64.exe', 193 '<(PRODUCT_DIR)/nacl64.exe',
188 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', 194 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe',
189 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', 195 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe',
190 '<(PRODUCT_DIR)/locales/en-US.pak', 196 '<(PRODUCT_DIR)/locales/en-US.pak',
191 ], 197 ],
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 'variables': { 235 'variables': {
230 'branding_dir': '../app/theme/google_chrome', 236 'branding_dir': '../app/theme/google_chrome',
231 }, 237 },
232 }, { # else branding!="Chrome" 238 }, { # else branding!="Chrome"
233 'variables': { 239 'variables': {
234 'branding_dir': '../app/theme/chromium', 240 'branding_dir': '../app/theme/chromium',
235 }, 241 },
236 }], 242 }],
237 ], 243 ],
238 } 244 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698