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 1735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1746 ['enable_mdns==1', { | 1746 ['enable_mdns==1', { |
1747 'grit_defines': ['-D', 'enable_mdns'], | 1747 'grit_defines': ['-D', 'enable_mdns'], |
1748 }], | 1748 }], |
1749 ['enable_enhanced_bookmarks==1', { | 1749 ['enable_enhanced_bookmarks==1', { |
1750 'grit_defines': ['-D', 'enable_enhanced_bookmarks'], | 1750 'grit_defines': ['-D', 'enable_enhanced_bookmarks'], |
1751 }], | 1751 }], |
1752 ['clang_use_chrome_plugins==1 and OS!="win"', { | 1752 ['clang_use_chrome_plugins==1 and OS!="win"', { |
1753 'clang_chrome_plugins_flags': [ | 1753 'clang_chrome_plugins_flags': [ |
1754 '<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)' | 1754 '<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)' |
1755 ], | 1755 ], |
| 1756 'clang_blink_gc_plugin_flags': [ |
| 1757 '<!@(<(DEPTH)/tools/clang/scripts/blink_gc_plugin_flags.sh)' |
| 1758 ], |
1756 }], | 1759 }], |
1757 | 1760 |
1758 ['asan==1 and OS!="win"', { | 1761 ['asan==1 and OS!="win"', { |
1759 'clang%': 1, | 1762 'clang%': 1, |
1760 }], | 1763 }], |
1761 ['asan==1 and OS=="mac"', { | 1764 ['asan==1 and OS=="mac"', { |
1762 # TODO(glider): we do not strip ASan binaries until the dynamic ASan | 1765 # TODO(glider): we do not strip ASan binaries until the dynamic ASan |
1763 # runtime is fully adopted. See http://crbug.com/242503. | 1766 # runtime is fully adopted. See http://crbug.com/242503. |
1764 'mac_strip_release': 0, | 1767 'mac_strip_release': 0, |
1765 }], | 1768 }], |
(...skipping 3027 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4793 # settings in target dicts. SYMROOT is a special case, because many other | 4796 # settings in target dicts. SYMROOT is a special case, because many other |
4794 # Xcode variables depend on it, including variables such as | 4797 # Xcode variables depend on it, including variables such as |
4795 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4798 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4796 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4799 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4797 # files to appear (when present) in the UI as actual files and not red | 4800 # files to appear (when present) in the UI as actual files and not red |
4798 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4801 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4799 # and therefore SYMROOT, needs to be set at the project level. | 4802 # and therefore SYMROOT, needs to be set at the project level. |
4800 'SYMROOT': '<(DEPTH)/xcodebuild', | 4803 'SYMROOT': '<(DEPTH)/xcodebuild', |
4801 }, | 4804 }, |
4802 } | 4805 } |
OLD | NEW |