| 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 1891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1902 ['asan==1 and OS=="mac"', { | 1902 ['asan==1 and OS=="mac"', { |
| 1903 # TODO(glider): we do not strip ASan binaries until the dynamic ASan | 1903 # TODO(glider): we do not strip ASan binaries until the dynamic ASan |
| 1904 # runtime is fully adopted. See http://crbug.com/242503. | 1904 # runtime is fully adopted. See http://crbug.com/242503. |
| 1905 'mac_strip_release': 0, | 1905 'mac_strip_release': 0, |
| 1906 }], | 1906 }], |
| 1907 ['lsan==1', { | 1907 ['lsan==1', { |
| 1908 'clang%': 1, | 1908 'clang%': 1, |
| 1909 }], | 1909 }], |
| 1910 ['tsan==1', { | 1910 ['tsan==1', { |
| 1911 'clang%': 1, | 1911 'clang%': 1, |
| 1912 'use_custom_libcxx%': 1, |
| 1912 }], | 1913 }], |
| 1913 ['msan==1', { | 1914 ['msan==1', { |
| 1914 'clang%': 1, | 1915 'clang%': 1, |
| 1915 }], | 1916 }], |
| 1916 | 1917 |
| 1917 ['OS=="linux" and clang_type_profiler==1', { | 1918 ['OS=="linux" and clang_type_profiler==1', { |
| 1918 'clang%': 1, | 1919 'clang%': 1, |
| 1919 'clang_use_chrome_plugins%': 0, | 1920 'clang_use_chrome_plugins%': 0, |
| 1920 'conditions': [ | 1921 'conditions': [ |
| 1921 ['host_arch=="x64"', { | 1922 ['host_arch=="x64"', { |
| (...skipping 3287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5209 # settings in target dicts. SYMROOT is a special case, because many other | 5210 # settings in target dicts. SYMROOT is a special case, because many other |
| 5210 # Xcode variables depend on it, including variables such as | 5211 # Xcode variables depend on it, including variables such as |
| 5211 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5212 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 5212 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5213 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 5213 # files to appear (when present) in the UI as actual files and not red | 5214 # files to appear (when present) in the UI as actual files and not red |
| 5214 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5215 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 5215 # and therefore SYMROOT, needs to be set at the project level. | 5216 # and therefore SYMROOT, needs to be set at the project level. |
| 5216 'SYMROOT': '<(DEPTH)/xcodebuild', | 5217 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 5217 }, | 5218 }, |
| 5218 } | 5219 } |
| OLD | NEW |