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 3356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3367 # These should end with %, but there seems to be a bug with % in | 3367 # These should end with %, but there seems to be a bug with % in |
3368 # variables that are intended to be set to different values in | 3368 # variables that are intended to be set to different values in |
3369 # different targets, like these. | 3369 # different targets, like these. |
3370 'mac_pie': 1, # Most executables can be position-independent. | 3370 'mac_pie': 1, # Most executables can be position-independent. |
3371 # Strip debugging symbols from the target. | 3371 # Strip debugging symbols from the target. |
3372 'mac_strip': '<(mac_strip_release)', | 3372 'mac_strip': '<(mac_strip_release)', |
3373 'conditions': [ | 3373 'conditions': [ |
3374 ['asan==1', { | 3374 ['asan==1', { |
3375 'conditions': [ | 3375 'conditions': [ |
3376 ['mac_want_real_dsym=="default"', { | 3376 ['mac_want_real_dsym=="default"', { |
3377 # TODO(glider): use real dSYM files for ASan once | 3377 'mac_real_dsym': 1, |
3378 # http://crbug.com/166857 is fixed. | |
3379 'mac_real_dsym': 0, | |
3380 }, { | 3378 }, { |
3381 'mac_real_dsym': '<(mac_want_real_dsym)' | 3379 'mac_real_dsym': '<(mac_want_real_dsym)' |
3382 }], | 3380 }], |
3383 ], | 3381 ], |
3384 }, { | 3382 }, { |
3385 'conditions': [ | 3383 'conditions': [ |
3386 ['mac_want_real_dsym=="default"', { | 3384 ['mac_want_real_dsym=="default"', { |
3387 'mac_real_dsym': 0, # Fake .dSYMs are fine in most cases. | 3385 'mac_real_dsym': 0, # Fake .dSYMs are fine in most cases. |
3388 }, { | 3386 }, { |
3389 'mac_real_dsym': '<(mac_want_real_dsym)' | 3387 'mac_real_dsym': '<(mac_want_real_dsym)' |
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3953 # settings in target dicts. SYMROOT is a special case, because many other | 3951 # settings in target dicts. SYMROOT is a special case, because many other |
3954 # Xcode variables depend on it, including variables such as | 3952 # Xcode variables depend on it, including variables such as |
3955 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3953 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3956 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3954 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3957 # files to appear (when present) in the UI as actual files and not red | 3955 # files to appear (when present) in the UI as actual files and not red |
3958 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3956 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3959 # and therefore SYMROOT, needs to be set at the project level. | 3957 # and therefore SYMROOT, needs to be set at the project level. |
3960 'SYMROOT': '<(DEPTH)/xcodebuild', | 3958 'SYMROOT': '<(DEPTH)/xcodebuild', |
3961 }, | 3959 }, |
3962 } | 3960 } |
OLD | NEW |