Chromium Code Reviews| 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 1435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1446 }], | 1446 }], |
| 1447 ['OS=="mac"', { | 1447 ['OS=="mac"', { |
| 1448 # Enable clang on mac by default! | 1448 # Enable clang on mac by default! |
| 1449 'clang%': 1, | 1449 'clang%': 1, |
| 1450 'conditions': [ | 1450 'conditions': [ |
| 1451 # All Chrome builds have breakpad symbols, but only process the | 1451 # All Chrome builds have breakpad symbols, but only process the |
| 1452 # symbols from official builds. | 1452 # symbols from official builds. |
| 1453 ['(branding=="Chrome" and buildtype=="Official")', { | 1453 ['(branding=="Chrome" and buildtype=="Official")', { |
| 1454 'mac_strip_release%': 1, | 1454 'mac_strip_release%': 1, |
| 1455 }], | 1455 }], |
| 1456 ], | 1456 ], |
|
robertshield
2013/12/03 03:26:26
Since this is the only change outside of chrome_el
Cait (Slow)
2013/12/03 19:59:40
I think the was left over from when I had more cha
| |
| 1457 }], # OS=="mac" | 1457 }], # OS=="mac" |
| 1458 ['OS=="mac" or OS=="ios"', { | 1458 ['OS=="mac" or OS=="ios"', { |
| 1459 'variables': { | 1459 'variables': { |
| 1460 # Mac OS X SDK and deployment target support. The SDK identifies | 1460 # Mac OS X SDK and deployment target support. The SDK identifies |
| 1461 # the version of the system headers that will be used, and | 1461 # the version of the system headers that will be used, and |
| 1462 # corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time | 1462 # corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time |
| 1463 # macro. "Maximum allowed" refers to the operating system version | 1463 # macro. "Maximum allowed" refers to the operating system version |
| 1464 # whose APIs are available in the headers. The deployment target | 1464 # whose APIs are available in the headers. The deployment target |
| 1465 # identifies the minimum system version that the built products are | 1465 # identifies the minimum system version that the built products are |
| 1466 # expected to function on. It corresponds to the | 1466 # expected to function on. It corresponds to the |
| (...skipping 3279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 4746 # settings in target dicts. SYMROOT is a special case, because many other | 4746 # settings in target dicts. SYMROOT is a special case, because many other |
| 4747 # Xcode variables depend on it, including variables such as | 4747 # Xcode variables depend on it, including variables such as |
| 4748 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4748 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4749 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4749 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4750 # files to appear (when present) in the UI as actual files and not red | 4750 # files to appear (when present) in the UI as actual files and not red |
| 4751 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4751 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4752 # and therefore SYMROOT, needs to be set at the project level. | 4752 # and therefore SYMROOT, needs to be set at the project level. |
| 4753 'SYMROOT': '<(DEPTH)/xcodebuild', | 4753 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4754 }, | 4754 }, |
| 4755 } | 4755 } |
| OLD | NEW |