Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Side by Side Diff: build/common.gypi

Issue 10909162: Switch use_libcc_for_compositor default to true (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use base::snprintf Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | cc/CCActiveAnimation.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | cc/CCActiveAnimation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698