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

Side by Side Diff: build/common.gypi

Issue 8163008: Add command line switch for enabling threaded compositing (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 9 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 935 matching lines...) Expand 10 before | Expand all | Expand 10 after
946 'defines': ['ENABLE_PROFILING=1'], 946 'defines': ['ENABLE_PROFILING=1'],
947 }], 947 }],
948 ['OS=="linux" and glibcxx_debug==1', { 948 ['OS=="linux" and glibcxx_debug==1', {
949 'defines': ['_GLIBCXX_DEBUG=1',], 949 'defines': ['_GLIBCXX_DEBUG=1',],
950 'cflags_cc!': ['-fno-rtti'], 950 'cflags_cc!': ['-fno-rtti'],
951 'cflags_cc+': ['-frtti', '-g'], 951 'cflags_cc+': ['-frtti', '-g'],
952 }], 952 }],
953 ['remoting==1', { 953 ['remoting==1', {
954 'defines': ['ENABLE_REMOTING=1'], 954 'defines': ['ENABLE_REMOTING=1'],
955 }], 955 }],
956 ['use_threaded_compositing==1', {
957 'defines': ['WTF_USE_THREADED_COMPOSITING'],
958 }],
959 ['p2p_apis==1', { 956 ['p2p_apis==1', {
960 'defines': ['ENABLE_P2P_APIS=1'], 957 'defines': ['ENABLE_P2P_APIS=1'],
961 }], 958 }],
962 ['proprietary_codecs==1', { 959 ['proprietary_codecs==1', {
963 'defines': ['USE_PROPRIETARY_CODECS'], 960 'defines': ['USE_PROPRIETARY_CODECS'],
964 }], 961 }],
965 ['enable_flapper_hacks==1', { 962 ['enable_flapper_hacks==1', {
966 'defines': ['ENABLE_FLAPPER_HACKS=1'], 963 'defines': ['ENABLE_FLAPPER_HACKS=1'],
967 }], 964 }],
968 ['configuration_policy==1', { 965 ['configuration_policy==1', {
(...skipping 1523 matching lines...) Expand 10 before | Expand all | Expand 10 after
2492 # settings in target dicts. SYMROOT is a special case, because many other 2489 # settings in target dicts. SYMROOT is a special case, because many other
2493 # Xcode variables depend on it, including variables such as 2490 # Xcode variables depend on it, including variables such as
2494 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 2491 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
2495 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 2492 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
2496 # files to appear (when present) in the UI as actual files and not red 2493 # files to appear (when present) in the UI as actual files and not red
2497 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 2494 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
2498 # and therefore SYMROOT, needs to be set at the project level. 2495 # and therefore SYMROOT, needs to be set at the project level.
2499 'SYMROOT': '<(DEPTH)/xcodebuild', 2496 'SYMROOT': '<(DEPTH)/xcodebuild',
2500 }, 2497 },
2501 } 2498 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/tab_contents/render_view_host_delegate_helper.cc » ('j') | webkit/glue/webpreferences.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698