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

Side by Side Diff: build/common.gypi

Issue 11066132: Remove use_libcc_for_compositor gyp variable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 years, 2 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/cc.gyp » ('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 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 'use_system_libjpeg%': '<(use_system_libjpeg)', 664 'use_system_libjpeg%': '<(use_system_libjpeg)',
665 'android_build_type%': '<(android_build_type)', 665 'android_build_type%': '<(android_build_type)',
666 'use_official_google_api_keys%': '<(use_official_google_api_keys)', 666 'use_official_google_api_keys%': '<(use_official_google_api_keys)',
667 'google_api_key%': '<(google_api_key)', 667 'google_api_key%': '<(google_api_key)',
668 'google_default_client_id%': '<(google_default_client_id)', 668 'google_default_client_id%': '<(google_default_client_id)',
669 'google_default_client_secret%': '<(google_default_client_secret)', 669 'google_default_client_secret%': '<(google_default_client_secret)',
670 670
671 # Use system yasm instead of bundled one. 671 # Use system yasm instead of bundled one.
672 'use_system_yasm%': 0, 672 'use_system_yasm%': 0,
673 673
674 # Use compositor implementation in cc/ instead of in WebKit.
675 'use_libcc_for_compositor%': 1,
676
677 # Default to enabled PIE; this is important for ASLR but we may need to be 674 # Default to enabled PIE; this is important for ASLR but we may need to be
678 # able to turn it off for various reasons. 675 # able to turn it off for various reasons.
679 'linux_disable_pie%': 0, 676 'linux_disable_pie%': 0,
680 677
681 # The release channel that this build targets. This is used to restrict 678 # The release channel that this build targets. This is used to restrict
682 # channel-specific build options, like which installer packages to create. 679 # channel-specific build options, like which installer packages to create.
683 # The default is 'all', which does no channel-specific filtering. 680 # The default is 'all', which does no channel-specific filtering.
684 'channel%': 'all', 681 'channel%': 'all',
685 682
686 # Override chromium_mac_pch and set it to 0 to suppress the use of 683 # Override chromium_mac_pch and set it to 0 to suppress the use of
(...skipping 2936 matching lines...) Expand 10 before | Expand all | Expand 10 after
3623 # settings in target dicts. SYMROOT is a special case, because many other 3620 # settings in target dicts. SYMROOT is a special case, because many other
3624 # Xcode variables depend on it, including variables such as 3621 # Xcode variables depend on it, including variables such as
3625 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3622 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3626 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3623 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3627 # files to appear (when present) in the UI as actual files and not red 3624 # files to appear (when present) in the UI as actual files and not red
3628 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3625 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3629 # and therefore SYMROOT, needs to be set at the project level. 3626 # and therefore SYMROOT, needs to be set at the project level.
3630 'SYMROOT': '<(DEPTH)/xcodebuild', 3627 'SYMROOT': '<(DEPTH)/xcodebuild',
3631 }, 3628 },
3632 } 3629 }
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698