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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 'use_aura%': 1, | 187 'use_aura%': 1, |
188 'use_ash%': 0, | 188 'use_ash%': 0, |
189 'toolkit_views%': 0, | 189 'toolkit_views%': 0, |
190 }], | 190 }], |
191 | 191 |
192 # Enable HiDPI on Mac OS, Chrome OS and Windows. | 192 # Enable HiDPI on Mac OS, Chrome OS and Windows. |
193 ['OS=="mac" or chromeos==1 or OS=="win"', { | 193 ['OS=="mac" or chromeos==1 or OS=="win"', { |
194 'enable_hidpi%': 1, | 194 'enable_hidpi%': 1, |
195 }], | 195 }], |
196 | 196 |
197 # Enable App Launcher on ChromeOS, Windows and OSX. | 197 # Enable App Launcher everywhere but mobile. |
198 # On Linux, enable App Launcher for the Aura build. | 198 ['OS!="ios" and OS!="android"', { |
199 ['use_ash==1 or OS=="win" or OS=="mac" or (desktop_linux==1 and use_au
ra==1)', { | |
200 'enable_app_list%': 1, | 199 'enable_app_list%': 1, |
201 }, { | 200 }, { |
202 'enable_app_list%': 0, | 201 'enable_app_list%': 0, |
203 }], | 202 }], |
204 | 203 |
205 ['use_aura==1 or (OS!="win" and OS!="mac" and OS!="ios" and OS!="andro
id")', { | 204 ['use_aura==1 or (OS!="win" and OS!="mac" and OS!="ios" and OS!="andro
id")', { |
206 'use_default_render_theme%': 1, | 205 'use_default_render_theme%': 1, |
207 }, { | 206 }, { |
208 'use_default_render_theme%': 0, | 207 'use_default_render_theme%': 0, |
209 }], | 208 }], |
(...skipping 5337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5547 # settings in target dicts. SYMROOT is a special case, because many other | 5546 # settings in target dicts. SYMROOT is a special case, because many other |
5548 # Xcode variables depend on it, including variables such as | 5547 # Xcode variables depend on it, including variables such as |
5549 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5548 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5550 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5549 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5551 # files to appear (when present) in the UI as actual files and not red | 5550 # files to appear (when present) in the UI as actual files and not red |
5552 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5551 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5553 # and therefore SYMROOT, needs to be set at the project level. | 5552 # and therefore SYMROOT, needs to be set at the project level. |
5554 'SYMROOT': '<(DEPTH)/xcodebuild', | 5553 'SYMROOT': '<(DEPTH)/xcodebuild', |
5555 }, | 5554 }, |
5556 } | 5555 } |
OLD | NEW |