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

Side by Side Diff: build/common.gypi

Issue 235083003: gyp performance: Add a DoMain version of build/compiler_version (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/compiler_version.py » ('j') | build/compiler_version.py » ('J')
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 1346 matching lines...) Expand 10 before | Expand all | Expand 10 after
1357 # We directly set the gcc_version since we know what we use. 1357 # We directly set the gcc_version since we know what we use.
1358 'conditions': [ 1358 'conditions': [
1359 ['target_arch=="x64" or target_arch=="arm64"', { 1359 ['target_arch=="x64" or target_arch=="arm64"', {
1360 'gcc_version%': 48, 1360 'gcc_version%': 48,
1361 }, { 1361 }, {
1362 'gcc_version%': 46, 1362 'gcc_version%': 46,
1363 }], 1363 }],
1364 ], 1364 ],
1365 'binutils_version%': 222, 1365 'binutils_version%': 222,
1366 }, { 1366 }, {
1367 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', 1367 'gcc_version%': '<!pymod_do_main(compiler_version)',
1368 'binutils_version%': '<!(python <(DEPTH)/build/compiler_version.py a ssembler)', 1368 'binutils_version%': '<!pymod_do_main(compiler_version assembler)',
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 "<!(python <(DEPTH)/build/dir_exists.py <(windows_sdk_defa ult_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',
(...skipping 3831 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/compiler_version.py » ('j') | build/compiler_version.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698