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 2247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2258 'defines': ['SPDY_PROXY_AUTH_ORIGIN="<(spdy_proxy_auth_origin)"'], | 2258 'defines': ['SPDY_PROXY_AUTH_ORIGIN="<(spdy_proxy_auth_origin)"'], |
2259 }], | 2259 }], |
2260 ['spdy_proxy_auth_property != ""', { | 2260 ['spdy_proxy_auth_property != ""', { |
2261 'defines': ['SPDY_PROXY_AUTH_PROPERTY="<(spdy_proxy_auth_property)"'], | 2261 'defines': ['SPDY_PROXY_AUTH_PROPERTY="<(spdy_proxy_auth_property)"'], |
2262 }], | 2262 }], |
2263 ['spdy_proxy_auth_value != ""', { | 2263 ['spdy_proxy_auth_value != ""', { |
2264 'defines': ['SPDY_PROXY_AUTH_VALUE="<(spdy_proxy_auth_value)"'], | 2264 'defines': ['SPDY_PROXY_AUTH_VALUE="<(spdy_proxy_auth_value)"'], |
2265 }], | 2265 }], |
2266 ['enable_mdns==1', { | 2266 ['enable_mdns==1', { |
2267 'defines': ['ENABLE_MDNS=1'], | 2267 'defines': ['ENABLE_MDNS=1'], |
2268 }] | 2268 }], |
| 2269 ['enable_fast_command_line_switches==1', { |
| 2270 'defines': ['ENABLE_FAST_COMMAND_LINE_SWITCHES=1'], |
| 2271 }], |
2269 ], # conditions for 'target_defaults' | 2272 ], # conditions for 'target_defaults' |
2270 'target_conditions': [ | 2273 'target_conditions': [ |
2271 ['enable_wexit_time_destructors==1', { | 2274 ['enable_wexit_time_destructors==1', { |
2272 'conditions': [ | 2275 'conditions': [ |
2273 [ 'clang==1', { | 2276 [ 'clang==1', { |
2274 'cflags': [ | 2277 'cflags': [ |
2275 '-Wexit-time-destructors', | 2278 '-Wexit-time-destructors', |
2276 ], | 2279 ], |
2277 'xcode_settings': { | 2280 'xcode_settings': { |
2278 'WARNING_CFLAGS': [ | 2281 'WARNING_CFLAGS': [ |
(...skipping 2365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4644 # settings in target dicts. SYMROOT is a special case, because many other | 4647 # settings in target dicts. SYMROOT is a special case, because many other |
4645 # Xcode variables depend on it, including variables such as | 4648 # Xcode variables depend on it, including variables such as |
4646 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4649 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4647 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4650 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4648 # files to appear (when present) in the UI as actual files and not red | 4651 # files to appear (when present) in the UI as actual files and not red |
4649 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4652 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4650 # and therefore SYMROOT, needs to be set at the project level. | 4653 # and therefore SYMROOT, needs to be set at the project level. |
4651 'SYMROOT': '<(DEPTH)/xcodebuild', | 4654 'SYMROOT': '<(DEPTH)/xcodebuild', |
4652 }, | 4655 }, |
4653 } | 4656 } |
OLD | NEW |