| 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 1646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1657 # configuration. Our gyp variable scoping is likely wrong and | 1657 # configuration. Our gyp variable scoping is likely wrong and |
| 1658 # needs to be cleaned up. The GN configuration should be changed | 1658 # needs to be cleaned up. The GN configuration should be changed |
| 1659 # to match. | 1659 # to match. |
| 1660 'binutils_version%': 224, | 1660 'binutils_version%': 224, |
| 1661 'linux_use_bundled_binutils%': '1', | 1661 'linux_use_bundled_binutils%': '1', |
| 1662 'linux_use_bundled_gold%': '1', | 1662 'linux_use_bundled_gold%': '1', |
| 1663 'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin', | 1663 'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin', |
| 1664 }], | 1664 }], |
| 1665 # All Chrome builds have breakpad symbols, but only process the | 1665 # All Chrome builds have breakpad symbols, but only process the |
| 1666 # symbols from official builds. | 1666 # symbols from official builds. |
| 1667 ['(branding=="Chrome" and buildtype=="Official")', { | 1667 ['buildtype=="Official"', { |
| 1668 'linux_dump_symbols%': 1, | 1668 'linux_dump_symbols%': 1, |
| 1669 | 1669 |
| 1670 # Omit unwind support in official release builds to save space. We | 1670 # Omit unwind support in official release builds to save space. We |
| 1671 # can use breakpad for these builds. | 1671 # can use breakpad for these builds. |
| 1672 'release_unwind_tables%': 0, | 1672 'release_unwind_tables%': 0, |
| 1673 }], | 1673 }], |
| 1674 ], | 1674 ], |
| 1675 }], # os_posix==1 and OS!="mac" and OS!="ios" | 1675 }], # os_posix==1 and OS!="mac" and OS!="ios" |
| 1676 ['OS=="ios"', { | 1676 ['OS=="ios"', { |
| 1677 'disable_nacl%': 1, | 1677 'disable_nacl%': 1, |
| (...skipping 4634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6312 # settings in target dicts. SYMROOT is a special case, because many other | 6312 # settings in target dicts. SYMROOT is a special case, because many other |
| 6313 # Xcode variables depend on it, including variables such as | 6313 # Xcode variables depend on it, including variables such as |
| 6314 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6314 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6315 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6315 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6316 # files to appear (when present) in the UI as actual files and not red | 6316 # files to appear (when present) in the UI as actual files and not red |
| 6317 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6317 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6318 # and therefore SYMROOT, needs to be set at the project level. | 6318 # and therefore SYMROOT, needs to be set at the project level. |
| 6319 'SYMROOT': '<(DEPTH)/xcodebuild', | 6319 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6320 }, | 6320 }, |
| 6321 } | 6321 } |
| OLD | NEW |