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

Side by Side Diff: build/common.gypi

Issue 23513058: x11: Make sure USE_XI2_MT is defined only for use_x11=1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | no next file » | 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 1998 matching lines...) Expand 10 before | Expand all | Expand 10 after
2009 # TODO(erg): We are progressively sealing up use of deprecated features 2009 # TODO(erg): We are progressively sealing up use of deprecated features
2010 # in gtk in preparation for an eventual porting to gtk3. 2010 # in gtk in preparation for an eventual porting to gtk3.
2011 'defines': ['GTK_DISABLE_SINGLE_INCLUDES=1'], 2011 'defines': ['GTK_DISABLE_SINGLE_INCLUDES=1'],
2012 }], 2012 }],
2013 ['chromeos==1', { 2013 ['chromeos==1', {
2014 'defines': ['OS_CHROMEOS=1'], 2014 'defines': ['OS_CHROMEOS=1'],
2015 }], 2015 }],
2016 ['google_tv==1', { 2016 ['google_tv==1', {
2017 'defines': ['GOOGLE_TV=1'], 2017 'defines': ['GOOGLE_TV=1'],
2018 }], 2018 }],
2019 ['use_xi2_mt!=0', { 2019 ['use_xi2_mt!=0 and use_x11==1', {
2020 'defines': ['USE_XI2_MT=<(use_xi2_mt)'], 2020 'defines': ['USE_XI2_MT=<(use_xi2_mt)'],
2021 }], 2021 }],
2022 ['file_manager_extension==1', { 2022 ['file_manager_extension==1', {
2023 'defines': ['FILE_MANAGER_EXTENSION=1'], 2023 'defines': ['FILE_MANAGER_EXTENSION=1'],
2024 }], 2024 }],
2025 ['image_loader_extension==1', { 2025 ['image_loader_extension==1', {
2026 'defines': ['IMAGE_LOADER_EXTENSION=1'], 2026 'defines': ['IMAGE_LOADER_EXTENSION=1'],
2027 }], 2027 }],
2028 ['profiling==1', { 2028 ['profiling==1', {
2029 'defines': ['ENABLE_PROFILING=1'], 2029 'defines': ['ENABLE_PROFILING=1'],
(...skipping 2715 matching lines...) Expand 10 before | Expand all | Expand 10 after
4745 # settings in target dicts. SYMROOT is a special case, because many other 4745 # settings in target dicts. SYMROOT is a special case, because many other
4746 # Xcode variables depend on it, including variables such as 4746 # Xcode variables depend on it, including variables such as
4747 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4747 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4748 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4748 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4749 # files to appear (when present) in the UI as actual files and not red 4749 # files to appear (when present) in the UI as actual files and not red
4750 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4750 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4751 # and therefore SYMROOT, needs to be set at the project level. 4751 # and therefore SYMROOT, needs to be set at the project level.
4752 'SYMROOT': '<(DEPTH)/xcodebuild', 4752 'SYMROOT': '<(DEPTH)/xcodebuild',
4753 }, 4753 },
4754 } 4754 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698