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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 'file_manager_extension%': 1, | 421 'file_manager_extension%': 1, |
422 }, { | 422 }, { |
423 'file_manager_extension%': 0, | 423 'file_manager_extension%': 0, |
424 }], | 424 }], |
425 | 425 |
426 # Enable WebUI TaskManager on Chrome OS or Aura. | 426 # Enable WebUI TaskManager on Chrome OS or Aura. |
427 ['chromeos==1 or use_aura==1', { | 427 ['chromeos==1 or use_aura==1', { |
428 'webui_task_manager%': 1, | 428 'webui_task_manager%': 1, |
429 }], | 429 }], |
430 | 430 |
| 431 # TODO(akalin): Enable this for all GTK/views platforms (except for |
| 432 # ChromeOS). |
| 433 ['OS=="win" or OS=="mac" or (OS=="linux" and use_aura==0)', { |
| 434 'enable_one_click_signin%': 1, |
| 435 }], |
| 436 |
431 ['OS=="android"', { | 437 ['OS=="android"', { |
432 'proprietary_codecs%': 1, | 438 'proprietary_codecs%': 1, |
433 'enable_webrtc%': 0, | 439 'enable_webrtc%': 0, |
434 }], | 440 }], |
435 | 441 |
436 # Use GPU accelerated cross process image transport by default | 442 # Use GPU accelerated cross process image transport by default |
437 # on linux builds with the Aura window manager | 443 # on linux builds with the Aura window manager |
438 ['use_aura==1 and OS=="linux"', { | 444 ['use_aura==1 and OS=="linux"', { |
439 'ui_compositor_image_transport%': 1, | 445 'ui_compositor_image_transport%': 1, |
440 }, { | 446 }, { |
(...skipping 2621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3062 # settings in target dicts. SYMROOT is a special case, because many other | 3068 # settings in target dicts. SYMROOT is a special case, because many other |
3063 # Xcode variables depend on it, including variables such as | 3069 # Xcode variables depend on it, including variables such as |
3064 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3070 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3065 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3071 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3066 # files to appear (when present) in the UI as actual files and not red | 3072 # files to appear (when present) in the UI as actual files and not red |
3067 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3073 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3068 # and therefore SYMROOT, needs to be set at the project level. | 3074 # and therefore SYMROOT, needs to be set at the project level. |
3069 'SYMROOT': '<(DEPTH)/xcodebuild', | 3075 'SYMROOT': '<(DEPTH)/xcodebuild', |
3070 }, | 3076 }, |
3071 } | 3077 } |
OLD | NEW |