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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 }], | 150 }], |
151 | 151 |
152 ['use_aura==1 or (OS!="win" and OS!="mac" and OS!="ios" and OS!="andro
id")', { | 152 ['use_aura==1 or (OS!="win" and OS!="mac" and OS!="ios" and OS!="andro
id")', { |
153 'use_default_render_theme%': 1, | 153 'use_default_render_theme%': 1, |
154 }, { | 154 }, { |
155 'use_default_render_theme%': 0, | 155 'use_default_render_theme%': 0, |
156 }], | 156 }], |
157 | 157 |
158 ['OS!="android" and OS!="ios"', { | 158 ['OS!="android" and OS!="ios"', { |
159 # Enable Web Intents support in WebKit. | 159 # Enable Web Intents support in WebKit. |
160 'enable_web_intents%': '1', | 160 'enable_web_intents%': 1, |
161 }, { | 161 }, { |
162 'enable_web_intents%': '0', | 162 'enable_web_intents%': 0, |
163 }], | 163 }], |
164 ], | 164 ], |
165 }, | 165 }, |
166 | 166 |
167 # Copy conditionally-set variables out one scope. | 167 # Copy conditionally-set variables out one scope. |
168 'chromeos%': '<(chromeos)', | 168 'chromeos%': '<(chromeos)', |
169 'host_arch%': '<(host_arch)', | 169 'host_arch%': '<(host_arch)', |
170 'target_arch%': '<(target_arch)', | 170 'target_arch%': '<(target_arch)', |
171 'toolkit_views%': '<(toolkit_views)', | 171 'toolkit_views%': '<(toolkit_views)', |
172 'toolkit_uses_gtk%': '<(toolkit_uses_gtk)', | 172 'toolkit_uses_gtk%': '<(toolkit_uses_gtk)', |
(...skipping 3860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4033 # settings in target dicts. SYMROOT is a special case, because many other | 4033 # settings in target dicts. SYMROOT is a special case, because many other |
4034 # Xcode variables depend on it, including variables such as | 4034 # Xcode variables depend on it, including variables such as |
4035 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4035 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4036 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4036 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4037 # files to appear (when present) in the UI as actual files and not red | 4037 # files to appear (when present) in the UI as actual files and not red |
4038 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4038 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4039 # and therefore SYMROOT, needs to be set at the project level. | 4039 # and therefore SYMROOT, needs to be set at the project level. |
4040 'SYMROOT': '<(DEPTH)/xcodebuild', | 4040 'SYMROOT': '<(DEPTH)/xcodebuild', |
4041 }, | 4041 }, |
4042 } | 4042 } |
OLD | NEW |