OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 # Enable navigator.registerProtocolHandler and supporting UI. | 132 # Enable navigator.registerProtocolHandler and supporting UI. |
133 'enable_register_protocol_handler%': 1, | 133 'enable_register_protocol_handler%': 1, |
134 | 134 |
135 # Remoting compilation is enabled by default. Set to 0 to disable. | 135 # Remoting compilation is enabled by default. Set to 0 to disable. |
136 'remoting%': 1, | 136 'remoting%': 1, |
137 | 137 |
138 # P2P APIs are compiled in by default. Set to 0 to disable. | 138 # P2P APIs are compiled in by default. Set to 0 to disable. |
139 # Also note that this should be enabled for remoting to compile. | 139 # Also note that this should be enabled for remoting to compile. |
140 'p2p_apis%': 1, | 140 'p2p_apis%': 1, |
141 | 141 |
| 142 # Configuration policy is enabled by default. Set to 0 to disable. |
| 143 'configuration_policy%': 1, |
| 144 |
142 # If this is set, the clang plugins used on the buildbot will be used. | 145 # If this is set, the clang plugins used on the buildbot will be used. |
143 # Run tools/clang/scripts/update.sh to make sure they are compiled. | 146 # Run tools/clang/scripts/update.sh to make sure they are compiled. |
144 # This causes 'clang_chrome_plugins_flags' to be set. | 147 # This causes 'clang_chrome_plugins_flags' to be set. |
145 # Has no effect if 'clang' is not set as well. | 148 # Has no effect if 'clang' is not set as well. |
146 'clang_use_chrome_plugins%': 0, | 149 'clang_use_chrome_plugins%': 0, |
147 | 150 |
148 'conditions': [ | 151 'conditions': [ |
149 # A flag for POSIX platforms | 152 # A flag for POSIX platforms |
150 ['OS=="win"', { | 153 ['OS=="win"', { |
151 'os_posix%': 0, | 154 'os_posix%': 0, |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 'python_ver%': '<(python_ver)', | 226 'python_ver%': '<(python_ver)', |
224 'armv7%': '<(armv7)', | 227 'armv7%': '<(armv7)', |
225 'arm_neon%': '<(arm_neon)', | 228 'arm_neon%': '<(arm_neon)', |
226 'sysroot%': '<(sysroot)', | 229 'sysroot%': '<(sysroot)', |
227 'disable_sse2%': '<(disable_sse2)', | 230 'disable_sse2%': '<(disable_sse2)', |
228 'component%': '<(component)', | 231 'component%': '<(component)', |
229 'use_titlecase_in_grd_files%': '<(use_titlecase_in_grd_files)', | 232 'use_titlecase_in_grd_files%': '<(use_titlecase_in_grd_files)', |
230 'use_third_party_translations%': '<(use_third_party_translations)', | 233 'use_third_party_translations%': '<(use_third_party_translations)', |
231 'remoting%': '<(remoting)', | 234 'remoting%': '<(remoting)', |
232 'p2p_apis%': '<(p2p_apis)', | 235 'p2p_apis%': '<(p2p_apis)', |
| 236 'configuration_policy%': '<(configuration_policy)', |
233 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)', | 237 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)', |
234 'enable_register_protocol_handler%': '<(enable_register_protocol_handler)', | 238 'enable_register_protocol_handler%': '<(enable_register_protocol_handler)', |
235 | 239 |
236 # The release channel that this build targets. This is used to restrict | 240 # The release channel that this build targets. This is used to restrict |
237 # channel-specific build options, like which installer packages to create. | 241 # channel-specific build options, like which installer packages to create. |
238 # The default is 'all', which does no channel-specific filtering. | 242 # The default is 'all', which does no channel-specific filtering. |
239 'channel%': 'all', | 243 'channel%': 'all', |
240 | 244 |
241 # Override chromium_mac_pch and set it to 0 to suppress the use of | 245 # Override chromium_mac_pch and set it to 0 to suppress the use of |
242 # precompiled headers on the Mac. Prefix header injection may still be | 246 # precompiled headers on the Mac. Prefix header injection may still be |
(...skipping 1504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1747 # and therefore SYMROOT, needs to be set at the project level. | 1751 # and therefore SYMROOT, needs to be set at the project level. |
1748 'SYMROOT': '<(DEPTH)/xcodebuild', | 1752 'SYMROOT': '<(DEPTH)/xcodebuild', |
1749 }, | 1753 }, |
1750 } | 1754 } |
1751 | 1755 |
1752 # Local Variables: | 1756 # Local Variables: |
1753 # tab-width:2 | 1757 # tab-width:2 |
1754 # indent-tabs-mode:nil | 1758 # indent-tabs-mode:nil |
1755 # End: | 1759 # End: |
1756 # vim: set expandtab tabstop=2 shiftwidth=2: | 1760 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |