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

Side by Side Diff: build/common.gypi

Issue 115142: Propagate official build variables from buildbot compile.py. (Closed)
Patch Set: Created 11 years, 7 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 | no next file » | 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 { 5 {
6 'variables': { 6 'variables': {
7 # .gyp files should set chromium_code to 1 if they build Chromium-specific 7 # .gyp files should set chromium_code to 1 if they build Chromium-specific
8 # code, as opposed to external code. This variable is used to control 8 # code, as opposed to external code. This variable is used to control
9 # such things as the set of warnings to enable, and whether warnings are 9 # such things as the set of warnings to enable, and whether warnings are
10 # treated as errors. 10 # treated as errors.
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 'AS', 207 'AS',
208 'CC', 208 'CC',
209 'CCACHE_DIR', 209 'CCACHE_DIR',
210 'CXX', 210 'CXX',
211 'DISTCC_DIR', 211 'DISTCC_DIR',
212 'DISTCC_HOSTS', 212 'DISTCC_HOSTS',
213 'HOME', 213 'HOME',
214 'INCLUDE_SERVER_ARGS', 214 'INCLUDE_SERVER_ARGS',
215 'INCLUDE_SERVER_PORT', 215 'INCLUDE_SERVER_PORT',
216 'LINK', 216 'LINK',
217 'CHROME_BUILD_TYPE',
218 'CHROMIUM_BUILD',
219 'OFFICIAL_BUILD',
TVL 2009/05/08 20:17:11 why is this different then on mac? shouldn't all
217 ], 220 ],
218 'configurations': { 221 'configurations': {
219 'Debug': { 222 'Debug': {
220 'variables': { 223 'variables': {
221 'debug_optimize%': '0', 224 'debug_optimize%': '0',
222 }, 225 },
223 'defines': [ 226 'defines': [
224 '_DEBUG', 227 '_DEBUG',
225 ], 228 ],
226 'cflags': [ 229 'cflags': [
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 # settings in target dicts. SYMROOT is a special case, because many other 454 # settings in target dicts. SYMROOT is a special case, because many other
452 # Xcode variables depend on it, including variables such as 455 # Xcode variables depend on it, including variables such as
453 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 456 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
454 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 457 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
455 # files to appear (when present) in the UI as actual files and not red 458 # files to appear (when present) in the UI as actual files and not red
456 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 459 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
457 # and therefore SYMROOT, needs to be set at the project level. 460 # and therefore SYMROOT, needs to be set at the project level.
458 'SYMROOT': '<(DEPTH)/xcodebuild', 461 'SYMROOT': '<(DEPTH)/xcodebuild',
459 }, 462 },
460 } 463 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698