| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 'enable_hidpi%': 1, | 252 'enable_hidpi%': 1, |
| 253 }], | 253 }], |
| 254 | 254 |
| 255 # Enable Top Chrome Material Design on Chrome OS, Windows, and Linux, | 255 # Enable Top Chrome Material Design on Chrome OS, Windows, and Linux, |
| 256 # Mac, and *BSD. | 256 # Mac, and *BSD. |
| 257 ['chromeos==1 or OS=="win" or OS=="linux" or OS=="mac" or OS=="openbsd
" or OS=="freebsd"', { | 257 ['chromeos==1 or OS=="win" or OS=="linux" or OS=="mac" or OS=="openbsd
" or OS=="freebsd"', { |
| 258 'enable_topchrome_md%': 1, | 258 'enable_topchrome_md%': 1, |
| 259 }], | 259 }], |
| 260 | 260 |
| 261 # Enable App Launcher everywhere but mobile. | 261 # Enable App Launcher everywhere but mobile. |
| 262 ['OS!="ios" and OS!="android"', { | 262 ['OS!="ios" and OS!="android" and chromecast==0', { |
| 263 'enable_app_list%': 1, | 263 'enable_app_list%': 1, |
| 264 }, { | 264 }, { |
| 265 'enable_app_list%': 0, | 265 'enable_app_list%': 0, |
| 266 }], | 266 }], |
| 267 | 267 |
| 268 ['use_aura==1 and OS!="android"', { | 268 ['use_aura==1 and OS!="android"', { |
| 269 'use_default_render_theme%': 1, | 269 'use_default_render_theme%': 1, |
| 270 }, { | 270 }, { |
| 271 'use_default_render_theme%': 0, | 271 'use_default_render_theme%': 0, |
| 272 }], | 272 }], |
| (...skipping 6039 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6312 # settings in target dicts. SYMROOT is a special case, because many other | 6312 # settings in target dicts. SYMROOT is a special case, because many other |
| 6313 # Xcode variables depend on it, including variables such as | 6313 # Xcode variables depend on it, including variables such as |
| 6314 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6314 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6315 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6315 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6316 # files to appear (when present) in the UI as actual files and not red | 6316 # files to appear (when present) in the UI as actual files and not red |
| 6317 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6317 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6318 # and therefore SYMROOT, needs to be set at the project level. | 6318 # and therefore SYMROOT, needs to be set at the project level. |
| 6319 'SYMROOT': '<(DEPTH)/xcodebuild', | 6319 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6320 }, | 6320 }, |
| 6321 } | 6321 } |
| OLD | NEW |