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 1877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1888 'conditions': [ | 1888 'conditions': [ |
| 1889 # All Chrome builds have breakpad symbols, but only process the | 1889 # All Chrome builds have breakpad symbols, but only process the |
| 1890 # symbols from official builds. | 1890 # symbols from official builds. |
| 1891 ['(branding=="Chrome" and buildtype=="Official")', { | 1891 ['(branding=="Chrome" and buildtype=="Official")', { |
| 1892 'mac_strip_release%': 1, | 1892 'mac_strip_release%': 1, |
| 1893 }], | 1893 }], |
| 1894 ], | 1894 ], |
| 1895 }], # OS=="mac" | 1895 }], # OS=="mac" |
| 1896 ['OS=="mac" or OS=="ios"', { | 1896 ['OS=="mac" or OS=="ios"', { |
| 1897 'clang%': 1, | 1897 'clang%': 1, |
| 1898 'use_allocator%': 'none', | |
|
Nico
2015/12/03 20:49:46
Maybe add a short comment what this means (we use
| |
| 1898 | 1899 |
| 1899 'variables': { | 1900 'variables': { |
| 1900 # Mac OS X SDK and deployment target support. The SDK identifies | 1901 # Mac OS X SDK and deployment target support. The SDK identifies |
| 1901 # the version of the system headers that will be used, and | 1902 # the version of the system headers that will be used, and |
| 1902 # corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time | 1903 # corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time |
| 1903 # macro. "Maximum allowed" refers to the operating system version | 1904 # macro. "Maximum allowed" refers to the operating system version |
| 1904 # whose APIs are available in the headers. The deployment target | 1905 # whose APIs are available in the headers. The deployment target |
| 1905 # identifies the minimum system version that the built products are | 1906 # identifies the minimum system version that the built products are |
| 1906 # expected to function on. It corresponds to the | 1907 # expected to function on. It corresponds to the |
| 1907 # MAC_OS_X_VERSION_MIN_REQUIRED compile-time macro. To ensure these | 1908 # MAC_OS_X_VERSION_MIN_REQUIRED compile-time macro. To ensure these |
| (...skipping 4471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 6379 # settings in target dicts. SYMROOT is a special case, because many other | 6380 # settings in target dicts. SYMROOT is a special case, because many other |
| 6380 # Xcode variables depend on it, including variables such as | 6381 # Xcode variables depend on it, including variables such as |
| 6381 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6382 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6382 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6383 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6383 # files to appear (when present) in the UI as actual files and not red | 6384 # files to appear (when present) in the UI as actual files and not red |
| 6384 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6385 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6385 # and therefore SYMROOT, needs to be set at the project level. | 6386 # and therefore SYMROOT, needs to be set at the project level. |
| 6386 'SYMROOT': '<(DEPTH)/xcodebuild', | 6387 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6387 }, | 6388 }, |
| 6388 } | 6389 } |
| OLD | NEW |