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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 'file_manager_extension%': 1, | 430 'file_manager_extension%': 1, |
431 }, { | 431 }, { |
432 'file_manager_extension%': 0, | 432 'file_manager_extension%': 0, |
433 }], | 433 }], |
434 | 434 |
435 # Enable WebUI TaskManager on Chrome OS or Aura. | 435 # Enable WebUI TaskManager on Chrome OS or Aura. |
436 ['chromeos==1 or use_aura==1', { | 436 ['chromeos==1 or use_aura==1', { |
437 'webui_task_manager%': 1, | 437 'webui_task_manager%': 1, |
438 }], | 438 }], |
439 | 439 |
| 440 ['OS=="win" or OS=="mac" or (OS=="linux" and use_aura==0)', { |
| 441 'enable_one_click_signin%': 1, |
| 442 }], |
| 443 |
440 ['OS=="android"', { | 444 ['OS=="android"', { |
441 'proprietary_codecs%': 1, | 445 'proprietary_codecs%': 1, |
442 'enable_webrtc%': 0, | 446 'enable_webrtc%': 0, |
443 }], | 447 }], |
444 | 448 |
445 # Use GPU accelerated cross process image transport by default | 449 # Use GPU accelerated cross process image transport by default |
446 # on linux builds with the Aura window manager | 450 # on linux builds with the Aura window manager |
447 ['use_aura==1 and OS=="linux"', { | 451 ['use_aura==1 and OS=="linux"', { |
448 'ui_compositor_image_transport%': 1, | 452 'ui_compositor_image_transport%': 1, |
449 }, { | 453 }, { |
(...skipping 2640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3090 # settings in target dicts. SYMROOT is a special case, because many other | 3094 # settings in target dicts. SYMROOT is a special case, because many other |
3091 # Xcode variables depend on it, including variables such as | 3095 # Xcode variables depend on it, including variables such as |
3092 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3096 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3093 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3097 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3094 # files to appear (when present) in the UI as actual files and not red | 3098 # files to appear (when present) in the UI as actual files and not red |
3095 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3099 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3096 # and therefore SYMROOT, needs to be set at the project level. | 3100 # and therefore SYMROOT, needs to be set at the project level. |
3097 'SYMROOT': '<(DEPTH)/xcodebuild', | 3101 'SYMROOT': '<(DEPTH)/xcodebuild', |
3098 }, | 3102 }, |
3099 } | 3103 } |
OLD | NEW |