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