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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 }], | 433 }], |
434 | 434 |
435 # Use GPU accelerated cross process image transport by default | 435 # Use GPU accelerated cross process image transport by default |
436 # on linux builds with the Aura window manager | 436 # on linux builds with the Aura window manager |
437 ['use_aura==1 and OS=="linux"', { | 437 ['use_aura==1 and OS=="linux"', { |
438 'ui_compositor_image_transport%': 1, | 438 'ui_compositor_image_transport%': 1, |
439 }, { | 439 }, { |
440 'ui_compositor_image_transport%': 0, | 440 'ui_compositor_image_transport%': 0, |
441 }], | 441 }], |
442 | 442 |
443 # Turn precompiled headers on by default for VS2010 non-Official builds. | 443 # Turn precompiled headers on by default for VS 2010. |
444 ['OS=="win" and MSVS_VERSION=="2010" and buildtype!="Official"', { | 444 ['OS=="win" and MSVS_VERSION=="2010"', { |
445 'chromium_win_pch%': 1 | 445 'chromium_win_pch%': 1 |
446 }], | 446 }], |
447 | 447 |
448 ['use_aura==1 or chromeos==1 or OS=="android"', { | 448 ['use_aura==1 or chromeos==1 or OS=="android"', { |
449 'enable_plugin_installation%': 0, | 449 'enable_plugin_installation%': 0, |
450 }, { | 450 }, { |
451 'enable_plugin_installation%': 1, | 451 'enable_plugin_installation%': 1, |
452 }], | 452 }], |
453 | 453 |
454 ['OS=="android"', { | 454 ['OS=="android"', { |
(...skipping 2605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3060 # settings in target dicts. SYMROOT is a special case, because many other | 3060 # settings in target dicts. SYMROOT is a special case, because many other |
3061 # Xcode variables depend on it, including variables such as | 3061 # Xcode variables depend on it, including variables such as |
3062 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3062 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3063 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3063 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3064 # files to appear (when present) in the UI as actual files and not red | 3064 # files to appear (when present) in the UI as actual files and not red |
3065 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3065 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3066 # and therefore SYMROOT, needs to be set at the project level. | 3066 # and therefore SYMROOT, needs to be set at the project level. |
3067 'SYMROOT': '<(DEPTH)/xcodebuild', | 3067 'SYMROOT': '<(DEPTH)/xcodebuild', |
3068 }, | 3068 }, |
3069 } | 3069 } |
OLD | NEW |