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

Side by Side Diff: build/common.gypi

Issue 234963003: gyp performance: don't invoke python to check dir existance (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dir_name: comment typo Created 6 years, 8 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 | « no previous file | build/dir_exists.py » ('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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 1279 matching lines...) Expand 10 before | Expand all | Expand 10 after
1290 'android_full_debug%': 0, 1290 'android_full_debug%': 0,
1291 1291
1292 # Sets the default version name and code for Android app, by default we 1292 # Sets the default version name and code for Android app, by default we
1293 # do a developer build. 1293 # do a developer build.
1294 'android_app_version_name%': 'Developer Build', 1294 'android_app_version_name%': 'Developer Build',
1295 'android_app_version_code%': 0, 1295 'android_app_version_code%': 0,
1296 1296
1297 # Contains data about the attached devices for gyp_managed_install. 1297 # Contains data about the attached devices for gyp_managed_install.
1298 'build_device_config_path': '<(PRODUCT_DIR)/build_devices.cfg', 1298 'build_device_config_path': '<(PRODUCT_DIR)/build_devices.cfg',
1299 1299
1300 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py "<(sas_dll_path)") ', 1300 'sas_dll_exists': '<!pymod_do_main(dir_exists "<(sas_dll_path)")',
1301 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py "<(wix_path)")', 1301 'wix_exists': '<!pymod_do_main(dir_exists "<(wix_path)")',
1302 1302
1303 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', 1303 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files',
1304 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', 1304 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files',
1305 1305
1306 # Whether we are using the rlz library or not. Platforms like Android send 1306 # Whether we are using the rlz library or not. Platforms like Android send
1307 # rlz codes for searches but do not use the library. 1307 # rlz codes for searches but do not use the library.
1308 'enable_rlz%': 0, 1308 'enable_rlz%': 0,
1309 1309
1310 # Turns on the i18n support in V8. 1310 # Turns on the i18n support in V8.
1311 'v8_enable_i18n_support': 1, 1311 'v8_enable_i18n_support': 1,
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
1365 'binutils_version%': 222, 1365 'binutils_version%': 222,
1366 }, { 1366 }, {
1367 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', 1367 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)',
1368 'binutils_version%': '<!(python <(DEPTH)/build/compiler_version.py a ssembler)', 1368 'binutils_version%': '<!(python <(DEPTH)/build/compiler_version.py a ssembler)',
1369 }], 1369 }],
1370 ], 1370 ],
1371 }, { 1371 }, {
1372 'gcc_version%': 0, 1372 'gcc_version%': 0,
1373 'binutils_version%': 0, 1373 'binutils_version%': 0,
1374 }], 1374 }],
1375 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(windows_sdk_defa ult_path))"=="True"', { 1375 ['OS=="win" and "<!pymod_do_main(dir_exists <(windows_sdk_default_path))"= ="True"', {
1376 'windows_sdk_path%': '<(windows_sdk_default_path)', 1376 'windows_sdk_path%': '<(windows_sdk_default_path)',
1377 }, { 1377 }, {
1378 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.0', 1378 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.0',
1379 }], 1379 }],
1380 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(directx_sdk_defa ult_path))"=="True"', { 1380 ['OS=="win" and "<!pymod_do_main(dir_exists <(directx_sdk_default_path))"= ="True"', {
1381 'directx_sdk_path%': '<(directx_sdk_default_path)', 1381 'directx_sdk_path%': '<(directx_sdk_default_path)',
1382 }, { 1382 }, {
1383 'directx_sdk_path%': '$(DXSDK_DIR)', 1383 'directx_sdk_path%': '$(DXSDK_DIR)',
1384 }], 1384 }],
1385 ['OS=="win"', { 1385 ['OS=="win"', {
1386 'windows_driver_kit_path%': '$(WDK_DIR)', 1386 'windows_driver_kit_path%': '$(WDK_DIR)',
1387 }], 1387 }],
1388 ['os_posix==1 and OS!="mac" and OS!="ios"', { 1388 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1389 'conditions': [ 1389 'conditions': [
1390 ['target_arch=="mipsel"', { 1390 ['target_arch=="mipsel"', {
(...skipping 3819 matching lines...) Expand 10 before | Expand all | Expand 10 after
5210 # settings in target dicts. SYMROOT is a special case, because many other 5210 # settings in target dicts. SYMROOT is a special case, because many other
5211 # Xcode variables depend on it, including variables such as 5211 # Xcode variables depend on it, including variables such as
5212 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5212 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5213 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5213 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5214 # files to appear (when present) in the UI as actual files and not red 5214 # files to appear (when present) in the UI as actual files and not red
5215 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5215 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5216 # and therefore SYMROOT, needs to be set at the project level. 5216 # and therefore SYMROOT, needs to be set at the project level.
5217 'SYMROOT': '<(DEPTH)/xcodebuild', 5217 'SYMROOT': '<(DEPTH)/xcodebuild',
5218 }, 5218 },
5219 } 5219 }
OLDNEW
« no previous file with comments | « no previous file | build/dir_exists.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698