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

Side by Side Diff: build/common.gypi

Issue 8586044: GTK: Make the gtk port compile with GTK_DISABLE_SINGLE_INCLUDES. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Remove views/. Not our problem for gtk3 porting. Created 9 years, 1 month 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
« no previous file with comments | « no previous file | chrome/browser/printing/print_dialog_gtk.h » ('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) 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 976 matching lines...) Expand 10 before | Expand all | Expand 10 after
987 }], 987 }],
988 ['use_aura==1', { 988 ['use_aura==1', {
989 'defines': ['USE_AURA=1'], 989 'defines': ['USE_AURA=1'],
990 }], 990 }],
991 ['use_nss==1', { 991 ['use_nss==1', {
992 'defines': ['USE_NSS=1'], 992 'defines': ['USE_NSS=1'],
993 }], 993 }],
994 ['toolkit_uses_gtk==1', { 994 ['toolkit_uses_gtk==1', {
995 'defines': ['TOOLKIT_USES_GTK=1'], 995 'defines': ['TOOLKIT_USES_GTK=1'],
996 }], 996 }],
997 ['toolkit_uses_gtk==1 and toolkit_views==0', {
998 # TODO(erg): We are progressively sealing up use of deprecated features
999 # in gtk in preparation for an eventual porting to gtk3.
1000 'defines': ['GTK_DISABLE_SINGLE_INCLUDES=1'],
1001 }],
997 ['chromeos==1', { 1002 ['chromeos==1', {
998 'defines': ['OS_CHROMEOS=1'], 1003 'defines': ['OS_CHROMEOS=1'],
999 }], 1004 }],
1000 ['touchui==1', { 1005 ['touchui==1', {
1001 'defines': ['TOUCH_UI=1'], 1006 'defines': ['TOUCH_UI=1'],
1002 }], 1007 }],
1003 ['use_virtual_keyboard==1', { 1008 ['use_virtual_keyboard==1', {
1004 'defines': ['USE_VIRTUAL_KEYBOARD=1'], 1009 'defines': ['USE_VIRTUAL_KEYBOARD=1'],
1005 }], 1010 }],
1006 ['use_xi2_mt!=0', { 1011 ['use_xi2_mt!=0', {
(...skipping 1625 matching lines...) Expand 10 before | Expand all | Expand 10 after
2632 # settings in target dicts. SYMROOT is a special case, because many other 2637 # settings in target dicts. SYMROOT is a special case, because many other
2633 # Xcode variables depend on it, including variables such as 2638 # Xcode variables depend on it, including variables such as
2634 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 2639 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
2635 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 2640 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
2636 # files to appear (when present) in the UI as actual files and not red 2641 # files to appear (when present) in the UI as actual files and not red
2637 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 2642 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
2638 # and therefore SYMROOT, needs to be set at the project level. 2643 # and therefore SYMROOT, needs to be set at the project level.
2639 'SYMROOT': '<(DEPTH)/xcodebuild', 2644 'SYMROOT': '<(DEPTH)/xcodebuild',
2640 }, 2645 },
2641 } 2646 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/printing/print_dialog_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698