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

Side by Side Diff: app/app_base.gypi

Issue 1741010: gyp: unify toolkit_views usage (Closed)
Patch Set: Created 10 years, 8 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
« no previous file with comments | « no previous file | build/all.gyp » ('j') | chrome/chrome_exe.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'app_base_target': 0, 8 'app_base_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 'conditions': [ 202 'conditions': [
203 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { 203 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
204 'dependencies': [ 204 'dependencies': [
205 # font_gtk.cc uses fontconfig. 205 # font_gtk.cc uses fontconfig.
206 # TODO(evanm): I think this is wrong; it should just use GTK. 206 # TODO(evanm): I think this is wrong; it should just use GTK.
207 '../build/linux/system.gyp:fontconfig', 207 '../build/linux/system.gyp:fontconfig',
208 '../build/linux/system.gyp:gtk', 208 '../build/linux/system.gyp:gtk',
209 '../build/linux/system.gyp:x11', 209 '../build/linux/system.gyp:x11',
210 ], 210 ],
211 'conditions': [ 211 'conditions': [
212 ['toolkit_views==0 and chromeos==0', { 212 ['toolkit_views==0', {
213 # Note: because of gyp predence rules this has to be defined as 213 # Note: because of gyp predence rules this has to be defined as
214 # 'sources/' rather than 'sources!'. 214 # 'sources/' rather than 'sources!'.
215 'sources/': [ 215 'sources/': [
216 ['exclude', '^os_exchange_data.cc'], 216 ['exclude', '^os_exchange_data.cc'],
217 ['exclude', '^os_exchange_data.h'], 217 ['exclude', '^os_exchange_data.h'],
218 ['exclude', '^os_exchange_data_provider_gtk.cc'], 218 ['exclude', '^os_exchange_data_provider_gtk.cc'],
219 ['exclude', '^os_exchange_data_provider_gtk.h'], 219 ['exclude', '^os_exchange_data_provider_gtk.h'],
220 ['exclude', '^drag_drop_types_gtk.cc'], 220 ['exclude', '^drag_drop_types_gtk.cc'],
221 ], 221 ],
222 }], 222 }],
223 ['toolkit_views==1 or chromeos==1', { 223 ['toolkit_views==1', {
224 # Note: because of gyp predence rules this has to be defined as 224 # Note: because of gyp predence rules this has to be defined as
225 # 'sources/' rather than 'sources!'. 225 # 'sources/' rather than 'sources!'.
226 'sources/': [ 226 'sources/': [
227 ['include', '^os_exchange_data.cc'], 227 ['include', '^os_exchange_data.cc'],
228 ], 228 ],
229 }], 229 }],
230 ], 230 ],
231 }], 231 }],
232 ['OS!="win"', { 232 ['OS!="win"', {
233 'sources!': [ 233 'sources!': [
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 'configurations': { 288 'configurations': {
289 'Common_Base': { 289 'Common_Base': {
290 'msvs_target_platform': 'x64', 290 'msvs_target_platform': 'x64',
291 }, 291 },
292 }, 292 },
293 }, 293 },
294 ], 294 ],
295 }], 295 }],
296 ], 296 ],
297 } 297 }
OLDNEW
« no previous file with comments | « no previous file | build/all.gyp » ('j') | chrome/chrome_exe.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698