OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |