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

Side by Side Diff: build/common.gypi

Issue 298093002: Fix define typo in Mac OS X build Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« 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) 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 4575 matching lines...) Expand 10 before | Expand all | Expand 10 after
4586 ], # target_conditions 4586 ], # target_conditions
4587 }, # target_defaults 4587 }, # target_defaults
4588 }], # OS=="mac" or OS=="ios" 4588 }], # OS=="mac" or OS=="ios"
4589 ['OS=="mac"', { 4589 ['OS=="mac"', {
4590 'target_defaults': { 4590 'target_defaults': {
4591 'defines': [ 4591 'defines': [
4592 # Prevent Mac OS X AssertMacros.h from defining macros that collide 4592 # Prevent Mac OS X AssertMacros.h from defining macros that collide
4593 # with common names, like 'check', 'require', and 'verify'. 4593 # with common names, like 'check', 'require', and 'verify'.
4594 # (Included by system header. Also exists on iOS but not included.) 4594 # (Included by system header. Also exists on iOS but not included.)
4595 # http://opensource.apple.com/source/CarbonHeaders/CarbonHeaders-18.1/ AssertMacros.h 4595 # http://opensource.apple.com/source/CarbonHeaders/CarbonHeaders-18.1/ AssertMacros.h
4596 '__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORE=0', 4596 '__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES=0',
4597 ], 4597 ],
4598 'variables': { 4598 'variables': {
4599 # These should end with %, but there seems to be a bug with % in 4599 # These should end with %, but there seems to be a bug with % in
4600 # variables that are intended to be set to different values in 4600 # variables that are intended to be set to different values in
4601 # different targets, like these. 4601 # different targets, like these.
4602 'mac_pie': 1, # Most executables can be position-independent. 4602 'mac_pie': 1, # Most executables can be position-independent.
4603 # Strip debugging symbols from the target. 4603 # Strip debugging symbols from the target.
4604 'mac_strip': '<(mac_strip_release)', 4604 'mac_strip': '<(mac_strip_release)',
4605 'conditions': [ 4605 'conditions': [
4606 ['asan==1', { 4606 ['asan==1', {
(...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after
5365 # settings in target dicts. SYMROOT is a special case, because many other 5365 # settings in target dicts. SYMROOT is a special case, because many other
5366 # Xcode variables depend on it, including variables such as 5366 # Xcode variables depend on it, including variables such as
5367 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5367 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5368 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5368 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5369 # files to appear (when present) in the UI as actual files and not red 5369 # files to appear (when present) in the UI as actual files and not red
5370 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5370 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5371 # and therefore SYMROOT, needs to be set at the project level. 5371 # and therefore SYMROOT, needs to be set at the project level.
5372 'SYMROOT': '<(DEPTH)/xcodebuild', 5372 'SYMROOT': '<(DEPTH)/xcodebuild',
5373 }, 5373 },
5374 } 5374 }
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