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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
621 'sas_dll_path%': '<(sas_dll_path)', | 621 'sas_dll_path%': '<(sas_dll_path)', |
622 'wix_path%': '<(wix_path)', | 622 'wix_path%': '<(wix_path)', |
623 'android_upstream_bringup%': '<(android_upstream_bringup)', | 623 'android_upstream_bringup%': '<(android_upstream_bringup)', |
624 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)', | 624 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)', |
625 'use_system_libjpeg%': '<(use_system_libjpeg)', | 625 'use_system_libjpeg%': '<(use_system_libjpeg)', |
626 'android_build_type%': '<(android_build_type)', | 626 'android_build_type%': '<(android_build_type)', |
627 | 627 |
628 # Use system yasm instead of bundled one. | 628 # Use system yasm instead of bundled one. |
629 'use_system_yasm%': 0, | 629 'use_system_yasm%': 0, |
630 | 630 |
| 631 # Use compositor implementation in cc/ instead of in WebKit. |
| 632 'use_libcc_for_compositor%': 1, |
| 633 |
631 # Default to enabled PIE; this is important for ASLR but we may need to be | 634 # Default to enabled PIE; this is important for ASLR but we may need to be |
632 # able to turn it off for various reasons. | 635 # able to turn it off for various reasons. |
633 'linux_disable_pie%': 0, | 636 'linux_disable_pie%': 0, |
634 | 637 |
635 # The release channel that this build targets. This is used to restrict | 638 # The release channel that this build targets. This is used to restrict |
636 # channel-specific build options, like which installer packages to create. | 639 # channel-specific build options, like which installer packages to create. |
637 # The default is 'all', which does no channel-specific filtering. | 640 # The default is 'all', which does no channel-specific filtering. |
638 'channel%': 'all', | 641 'channel%': 'all', |
639 | 642 |
640 # Override chromium_mac_pch and set it to 0 to suppress the use of | 643 # Override chromium_mac_pch and set it to 0 to suppress the use of |
(...skipping 2782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3423 # settings in target dicts. SYMROOT is a special case, because many other | 3426 # settings in target dicts. SYMROOT is a special case, because many other |
3424 # Xcode variables depend on it, including variables such as | 3427 # Xcode variables depend on it, including variables such as |
3425 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3428 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3426 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3429 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3427 # files to appear (when present) in the UI as actual files and not red | 3430 # files to appear (when present) in the UI as actual files and not red |
3428 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3431 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3429 # and therefore SYMROOT, needs to be set at the project level. | 3432 # and therefore SYMROOT, needs to be set at the project level. |
3430 'SYMROOT': '<(DEPTH)/xcodebuild', | 3433 'SYMROOT': '<(DEPTH)/xcodebuild', |
3431 }, | 3434 }, |
3432 } | 3435 } |
OLD | NEW |