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

Side by Side Diff: ui/ui.gyp

Issue 11444013: Get drag and drop working for win aura. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years 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
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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'ui_resources.gypi', 10 'ui_resources.gypi',
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 ], 585 ],
586 }], 586 }],
587 ['use_aura==1', { 587 ['use_aura==1', {
588 'sources/': [ 588 'sources/': [
589 ['exclude', 'gfx/gtk_'], 589 ['exclude', 'gfx/gtk_'],
590 ['exclude', 'gfx/gtk_util.cc'], 590 ['exclude', 'gfx/gtk_util.cc'],
591 ['exclude', 'gfx/gtk_util.h'], 591 ['exclude', 'gfx/gtk_util.h'],
592 ['exclude', 'gfx/screen_gtk.cc'], 592 ['exclude', 'gfx/screen_gtk.cc'],
593 ['exclude', 'base/dialogs/select_file_dialog_mac.mm'], 593 ['exclude', 'base/dialogs/select_file_dialog_mac.mm'],
594 ['exclude', 'base/dialogs/select_file_dialog_win.cc'], 594 ['exclude', 'base/dialogs/select_file_dialog_win.cc'],
595 ['exclude', 'base/dragdrop/drag_utils_win.cc'],
596 ['exclude', 'base/work_area_watcher_observer.h'], 595 ['exclude', 'base/work_area_watcher_observer.h'],
597 ['exclude', 'base/x/active_window_watcher_x.cc'], 596 ['exclude', 'base/x/active_window_watcher_x.cc'],
598 ['exclude', 'base/x/active_window_watcher_x.h'], 597 ['exclude', 'base/x/active_window_watcher_x.h'],
599 ['exclude', 'base/x/active_window_watcher_x_observer.h'], 598 ['exclude', 'base/x/active_window_watcher_x_observer.h'],
600 ['exclude', 'base/x/root_window_property_watcher_x.cc'], 599 ['exclude', 'base/x/root_window_property_watcher_x.cc'],
601 ['exclude', 'base/x/root_window_property_watcher_x.h'], 600 ['exclude', 'base/x/root_window_property_watcher_x.h'],
602 ['exclude', 'base/x/work_area_watcher_x.cc'], 601 ['exclude', 'base/x/work_area_watcher_x.cc'],
603 ['exclude', 'base/x/work_area_watcher_x.h'], 602 ['exclude', 'base/x/work_area_watcher_x.h'],
604 ['exclude', 'ui_controls_win.cc'], 603 ['exclude', 'ui_controls_win.cc'],
605 ], 604 ],
606 }, { # use_aura!=1 605 }, { # use_aura!=1
607 'sources!': [ 606 'sources!': [
608 'base/cursor/cursor.cc', 607 'base/cursor/cursor.cc',
609 'base/cursor/cursor.h', 608 'base/cursor/cursor.h',
610 'base/cursor/cursor_loader_x11.cc', 609 'base/cursor/cursor_loader_x11.cc',
611 'base/cursor/cursor_loader_x11.h', 610 'base/cursor/cursor_loader_x11.h',
612 'base/cursor/cursor_win.cc', 611 'base/cursor/cursor_win.cc',
613 'base/cursor/cursor_x11.cc', 612 'base/cursor/cursor_x11.cc',
614 ] 613 ]
615 }], 614 }],
616 ['use_aura==1 and OS=="win"', { 615 ['use_aura==1 and OS=="win"', {
617 'sources/': [ 616 'sources/': [
618 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.cc'], 617 ['exclude', 'base/dragdrop/os_exchange_data_provider_aura.cc'],
619 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.h'], 618 ['exclude', 'base/dragdrop/drag_utils_aura.cc'],
620 ], 619 ],
621 }], 620 }],
622 ['use_aura==0 and toolkit_views==0', { 621 ['use_aura==0 and toolkit_views==0', {
623 'sources/': [ 622 'sources/': [
624 ['exclude', '^base/gestures/*'], 623 ['exclude', '^base/gestures/*'],
625 ] 624 ]
626 }], 625 }],
627 ['use_aura==1 and use_ash==0 and OS=="linux"', { 626 ['use_aura==1 and use_ash==0 and OS=="linux"', {
628 'sources': [ 627 'sources': [
629 'base/linux_ui.cc', 628 'base/linux_ui.cc',
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
887 }, 886 },
888 'dependencies': [ 887 'dependencies': [
889 '../base/base.gyp:base_java', 888 '../base/base.gyp:base_java',
890 ], 889 ],
891 'includes': [ '../build/java.gypi' ], 890 'includes': [ '../build/java.gypi' ],
892 }, 891 },
893 ], 892 ],
894 }], 893 }],
895 ], 894 ],
896 } 895 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698