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 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 'file_manager_extension%': 1, | 427 'file_manager_extension%': 1, |
428 }, { | 428 }, { |
429 'file_manager_extension%': 0, | 429 'file_manager_extension%': 0, |
430 }], | 430 }], |
431 | 431 |
432 # Enable WebUI TaskManager on Chrome OS or Aura. | 432 # Enable WebUI TaskManager on Chrome OS or Aura. |
433 ['chromeos==1 or use_aura==1', { | 433 ['chromeos==1 or use_aura==1', { |
434 'webui_task_manager%': 1, | 434 'webui_task_manager%': 1, |
435 }], | 435 }], |
436 | 436 |
| 437 ['OS=="win" or OS=="mac" or (OS=="linux" and use_aura==0)', { |
| 438 'enable_one_click_signin%': 1, |
| 439 }], |
| 440 |
437 ['OS=="android"', { | 441 ['OS=="android"', { |
438 'proprietary_codecs%': 1, | 442 'proprietary_codecs%': 1, |
439 'enable_webrtc%': 0, | 443 'enable_webrtc%': 0, |
440 }], | 444 }], |
441 | 445 |
442 # Use GPU accelerated cross process image transport by default | 446 # Use GPU accelerated cross process image transport by default |
443 # on linux builds with the Aura window manager | 447 # on linux builds with the Aura window manager |
444 ['use_aura==1 and OS=="linux"', { | 448 ['use_aura==1 and OS=="linux"', { |
445 'ui_compositor_image_transport%': 1, | 449 'ui_compositor_image_transport%': 1, |
446 }, { | 450 }, { |
(...skipping 2661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3108 # settings in target dicts. SYMROOT is a special case, because many other | 3112 # settings in target dicts. SYMROOT is a special case, because many other |
3109 # Xcode variables depend on it, including variables such as | 3113 # Xcode variables depend on it, including variables such as |
3110 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3114 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3111 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3115 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3112 # files to appear (when present) in the UI as actual files and not red | 3116 # files to appear (when present) in the UI as actual files and not red |
3113 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3117 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3114 # and therefore SYMROOT, needs to be set at the project level. | 3118 # and therefore SYMROOT, needs to be set at the project level. |
3115 'SYMROOT': '<(DEPTH)/xcodebuild', | 3119 'SYMROOT': '<(DEPTH)/xcodebuild', |
3116 }, | 3120 }, |
3117 } | 3121 } |
OLD | NEW |