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: ui/ui.gyp

Issue 7981030: aura: Have aura and aura_demo build and run without gtk on linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 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
« build/build_config.h ('K') | « ui/base/x/x11_util.cc ('k') | 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) 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'toolkit_views2': 0, # ui/views/ is an experimental framework on Windows. 8 'toolkit_views2': 0, # ui/views/ is an experimental framework on Windows.
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 'conditions': [ 298 'conditions': [
299 ['use_aura==1', { 299 ['use_aura==1', {
300 'sources/': [ 300 'sources/': [
301 ['exclude', 'gfx/gtk_'], 301 ['exclude', 'gfx/gtk_'],
302 ['exclude', 'gfx/gtk_util.cc'], 302 ['exclude', 'gfx/gtk_util.cc'],
303 ['exclude', 'gfx/gtk_util.h'], 303 ['exclude', 'gfx/gtk_util.h'],
304 ['exclude', 'gfx/screen_gtk.cc'], 304 ['exclude', 'gfx/screen_gtk.cc'],
305 ['exclude', 'gfx/screen_win.cc'], 305 ['exclude', 'gfx/screen_win.cc'],
306 ['exclude', 'base/win/mouse_wheel_util.cc'], 306 ['exclude', 'base/win/mouse_wheel_util.cc'],
307 ['exclude', 'base/win/mouse_wheel_util.h'], 307 ['exclude', 'base/win/mouse_wheel_util.h'],
308 ['exclude', 'base/x/active_window_watcher_x.cc'],
309 ['exclude', 'base/x/active_window_watcher_x.h'],
308 ], 310 ],
309 }], 311 }],
310 ['use_glib == 1', { 312 ['use_glib == 1', {
311 'dependencies': [ 313 'dependencies': [
312 # font_gtk.cc uses fontconfig. 314 # font_gtk.cc uses fontconfig.
313 '../build/linux/system.gyp:fontconfig', 315 '../build/linux/system.gyp:fontconfig',
314 '../build/linux/system.gyp:glib', 316 '../build/linux/system.gyp:glib',
315 '../build/linux/system.gyp:pangocairo', 317 '../build/linux/system.gyp:pangocairo',
316 '../build/linux/system.gyp:x11', 318 '../build/linux/system.gyp:x11',
317 '../build/linux/system.gyp:xext', 319 '../build/linux/system.gyp:xext',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 '../build/linux/system.gyp:gtk', 354 '../build/linux/system.gyp:gtk',
353 ], 355 ],
354 'sources': [ 356 'sources': [
355 'gfx/gtk_native_view_id_manager.cc', 357 'gfx/gtk_native_view_id_manager.cc',
356 'gfx/gtk_native_view_id_manager.h', 358 'gfx/gtk_native_view_id_manager.h',
357 'gfx/gtk_preserve_window.cc', 359 'gfx/gtk_preserve_window.cc',
358 'gfx/gtk_preserve_window.h', 360 'gfx/gtk_preserve_window.h',
359 'gfx/gtk_util.cc', 361 'gfx/gtk_util.cc',
360 'gfx/gtk_util.h', 362 'gfx/gtk_util.h',
361 ], 363 ],
364 'sources!': [
365 'base/clipboard/clipboard_aura.cc',
366 ],
362 }], 367 }],
363 ['use_wayland == 1', { 368 ['use_wayland == 1', {
364 'sources/': [ 369 'sources/': [
365 ['exclude', '_(gtk|x)\\.cc$'], 370 ['exclude', '_(gtk|x)\\.cc$'],
366 ['exclude', '/(gtk|x11)_[^/]*\\.cc$'], 371 ['exclude', '/(gtk|x11)_[^/]*\\.cc$'],
367 ['include', 'base/dragdrop/gtk_dnd_util.cc'], 372 ['include', 'base/dragdrop/gtk_dnd_util.cc'],
368 ['include', 'base/dragdrop/gtk_dnd_util.h'], 373 ['include', 'base/dragdrop/gtk_dnd_util.h'],
369 ['include', 'base/dragdrop/os_exchange_data_provider_gtk.cc'], 374 ['include', 'base/dragdrop/os_exchange_data_provider_gtk.cc'],
370 ['include', 'base/dragdrop/os_exchange_data_provider_gtk.h'], 375 ['include', 'base/dragdrop/os_exchange_data_provider_gtk.h'],
371 ['include', 'base/keycodes/keyboard_code_conversion_x.cc'], 376 ['include', 'base/keycodes/keyboard_code_conversion_x.cc'],
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 546 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
542 'os.chmod(\'<(ui_copy_dest)\', 0700)' 547 'os.chmod(\'<(ui_copy_dest)\', 0700)'
543 ] 548 ]
544 } 549 }
545 ], 550 ],
546 }, 551 },
547 ], 552 ],
548 }], 553 }],
549 ], 554 ],
550 } 555 }
OLDNEW
« build/build_config.h ('K') | « ui/base/x/x11_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698