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 1513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1524 ['OS=="mac"', { | 1524 ['OS=="mac"', { |
1525 'conditions': [ | 1525 'conditions': [ |
1526 # All Chrome builds have breakpad symbols, but only process the | 1526 # All Chrome builds have breakpad symbols, but only process the |
1527 # symbols from official builds. | 1527 # symbols from official builds. |
1528 ['(branding=="Chrome" and buildtype=="Official")', { | 1528 ['(branding=="Chrome" and buildtype=="Official")', { |
1529 'mac_strip_release%': 1, | 1529 'mac_strip_release%': 1, |
1530 }], | 1530 }], |
1531 ], | 1531 ], |
1532 }], # OS=="mac" | 1532 }], # OS=="mac" |
1533 ['OS=="mac" or OS=="ios"', { | 1533 ['OS=="mac" or OS=="ios"', { |
1534 # Enable clang on mac by default! All iOS builds already use clang. | |
1535 'clang%': 1, | 1534 'clang%': 1, |
1536 | 1535 |
1537 'variables': { | 1536 'variables': { |
1538 # Mac OS X SDK and deployment target support. The SDK identifies | 1537 # Mac OS X SDK and deployment target support. The SDK identifies |
1539 # the version of the system headers that will be used, and | 1538 # the version of the system headers that will be used, and |
1540 # corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time | 1539 # corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time |
1541 # macro. "Maximum allowed" refers to the operating system version | 1540 # macro. "Maximum allowed" refers to the operating system version |
1542 # whose APIs are available in the headers. The deployment target | 1541 # whose APIs are available in the headers. The deployment target |
1543 # identifies the minimum system version that the built products are | 1542 # identifies the minimum system version that the built products are |
1544 # expected to function on. It corresponds to the | 1543 # expected to function on. It corresponds to the |
(...skipping 3478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5023 # settings in target dicts. SYMROOT is a special case, because many other | 5022 # settings in target dicts. SYMROOT is a special case, because many other |
5024 # Xcode variables depend on it, including variables such as | 5023 # Xcode variables depend on it, including variables such as |
5025 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5024 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5026 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5025 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5027 # files to appear (when present) in the UI as actual files and not red | 5026 # files to appear (when present) in the UI as actual files and not red |
5028 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5027 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5029 # and therefore SYMROOT, needs to be set at the project level. | 5028 # and therefore SYMROOT, needs to be set at the project level. |
5030 'SYMROOT': '<(DEPTH)/xcodebuild', | 5029 'SYMROOT': '<(DEPTH)/xcodebuild', |
5031 }, | 5030 }, |
5032 } | 5031 } |
OLD | NEW |