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 1531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1542 ['clang_use_chrome_plugins==1 and OS!="win"', { | 1542 ['clang_use_chrome_plugins==1 and OS!="win"', { |
1543 'clang_chrome_plugins_flags': [ | 1543 'clang_chrome_plugins_flags': [ |
1544 '<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)' | 1544 '<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)' |
1545 ], | 1545 ], |
1546 }], | 1546 }], |
1547 | 1547 |
1548 ['asan==1 and OS!="win"', { | 1548 ['asan==1 and OS!="win"', { |
1549 'clang%': 1, | 1549 'clang%': 1, |
1550 }], | 1550 }], |
1551 ['asan==1 and OS=="mac"', { | 1551 ['asan==1 and OS=="mac"', { |
1552 # See http://crbug.com/145503. | |
1553 'component': "static_library", | |
1554 # TODO(glider): we do not strip ASan binaries until the dynamic ASan | 1552 # TODO(glider): we do not strip ASan binaries until the dynamic ASan |
1555 # runtime is fully adopted. See http://crbug.com/242503. | 1553 # runtime is fully adopted. See http://crbug.com/242503. |
1556 'mac_strip_release': 0, | 1554 'mac_strip_release': 0, |
1557 }], | 1555 }], |
1558 ['tsan==1', { | 1556 ['tsan==1', { |
1559 'clang%': 1, | 1557 'clang%': 1, |
1560 }], | 1558 }], |
1561 ['msan==1', { | 1559 ['msan==1', { |
1562 'clang%': 1, | 1560 'clang%': 1, |
1563 }], | 1561 }], |
(...skipping 2875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4439 # settings in target dicts. SYMROOT is a special case, because many other | 4437 # settings in target dicts. SYMROOT is a special case, because many other |
4440 # Xcode variables depend on it, including variables such as | 4438 # Xcode variables depend on it, including variables such as |
4441 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4439 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4442 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4440 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4443 # files to appear (when present) in the UI as actual files and not red | 4441 # files to appear (when present) in the UI as actual files and not red |
4444 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4442 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4445 # and therefore SYMROOT, needs to be set at the project level. | 4443 # and therefore SYMROOT, needs to be set at the project level. |
4446 'SYMROOT': '<(DEPTH)/xcodebuild', | 4444 'SYMROOT': '<(DEPTH)/xcodebuild', |
4447 }, | 4445 }, |
4448 } | 4446 } |
OLD | NEW |