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