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

Side by Side Diff: views/views.gyp

Issue 8450018: First shot at implementing drag&drop for Aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: added missing test file 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 | Annotate | Revision Log
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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 8
9 'target_defaults': { 9 'target_defaults': {
10 'conditions': [ 10 'conditions': [
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 'controls/textfield/native_textfield_views.h', 255 'controls/textfield/native_textfield_views.h',
256 'controls/throbber.cc', 256 'controls/throbber.cc',
257 'controls/throbber.h', 257 'controls/throbber.h',
258 'controls/tree/tree_view.cc', 258 'controls/tree/tree_view.cc',
259 'controls/tree/tree_view.h', 259 'controls/tree/tree_view.h',
260 #'debug_utils.cc', 260 #'debug_utils.cc',
261 #'debug_utils.h', 261 #'debug_utils.h',
262 'drag_controller.h', 262 'drag_controller.h',
263 'drag_utils.cc', 263 'drag_utils.cc',
264 'drag_utils.h', 264 'drag_utils.h',
265 'drag_utils_aura.cc',
265 'drag_utils_gtk.cc', 266 'drag_utils_gtk.cc',
266 'drag_utils_linux.cc', 267 'drag_utils_linux.cc',
267 'drag_utils_win.cc', 268 'drag_utils_win.cc',
268 'events/event.cc', 269 'events/event.cc',
269 'events/event.h', 270 'events/event.h',
270 'events/event_aura.cc', 271 'events/event_aura.cc',
271 'events/event_gtk.cc', 272 'events/event_gtk.cc',
272 'events/event_wayland.cc', 273 'events/event_wayland.cc',
273 'events/event_win.cc', 274 'events/event_win.cc',
274 'events/event_x.cc', 275 'events/event_x.cc',
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 ['include', 'widget/tooltip_manager_views.cc'], 434 ['include', 'widget/tooltip_manager_views.cc'],
434 ], 435 ],
435 }], 436 }],
436 ['use_aura==1', { 437 ['use_aura==1', {
437 'sources/': [ 438 'sources/': [
438 ['exclude', '_(gtk|x)\\.cc$'], 439 ['exclude', '_(gtk|x)\\.cc$'],
439 ['exclude', '/(gtk|x)_[^/]*\\.cc$'], 440 ['exclude', '/(gtk|x)_[^/]*\\.cc$'],
440 ['exclude', 'controls/menu/menu_2.*'], 441 ['exclude', 'controls/menu/menu_2.*'],
441 ], 442 ],
442 'sources!': [ 443 'sources!': [
444 'drag_utils_linux.cc',
443 'controls/menu/menu_config_linux.cc', 445 'controls/menu/menu_config_linux.cc',
444 'controls/menu/menu_item_view_linux.cc', 446 'controls/menu/menu_item_view_linux.cc',
445 'controls/menu/menu_separator_linux.cc', 447 'controls/menu/menu_separator_linux.cc',
446 'controls/native_control.cc', 448 'controls/native_control.cc',
447 'controls/native_control.h', 449 'controls/native_control.h',
448 'controls/scrollbar/bitmap_scroll_bar.cc', 450 'controls/scrollbar/bitmap_scroll_bar.cc',
449 'controls/scrollbar/bitmap_scroll_bar.h', 451 'controls/scrollbar/bitmap_scroll_bar.h',
450 'controls/tabbed_pane/tabbed_pane.cc', 452 'controls/tabbed_pane/tabbed_pane.cc',
451 'controls/tabbed_pane/tabbed_pane.h', 453 'controls/tabbed_pane/tabbed_pane.h',
452 'controls/table/group_table_view.cc', 454 'controls/table/group_table_view.cc',
453 'controls/table/group_table_view.h', 455 'controls/table/group_table_view.h',
454 'controls/table/native_table_wrapper.h', 456 'controls/table/native_table_wrapper.h',
455 'controls/table/table_view.cc', 457 'controls/table/table_view.cc',
456 'controls/table/table_view.h', 458 'controls/table/table_view.h',
457 'controls/table/table_view2.cc', 459 'controls/table/table_view2.cc',
458 'controls/table/table_view2.h', 460 'controls/table/table_view2.h',
459 'controls/table/table_view_observer.h', 461 'controls/table/table_view_observer.h',
460 'controls/tree/tree_view.cc', 462 'controls/tree/tree_view.cc',
461 'controls/tree/tree_view.h', 463 'controls/tree/tree_view.h',
462 'focus/accelerator_handler_touch.cc', 464 'focus/accelerator_handler_touch.cc',
463 'widget/aero_tooltip_manager.cc', 465 'widget/aero_tooltip_manager.cc',
464 'widget/aero_tooltip_manager.h', 466 'widget/aero_tooltip_manager.h',
465 'widget/child_window_message_processor.cc', 467 'widget/child_window_message_processor.cc',
466 'widget/child_window_message_processor.h', 468 'widget/child_window_message_processor.h',
467 ], 469 ],
468 'conditions': [ 470 'conditions': [
469 ['OS=="win"', { 471 ['OS=="win"', {
470 'sources/': [ 472 'sources/': [
471 ['include', 'drag_utils_win.cc'], 473 ['include', 'drag_utils_win.cc'],
474 ['exclude', 'drag_utils_aura.cc'],
472 ], 475 ],
473 }], 476 }],
474 ], 477 ],
475 }, { # else: use_aura==1 478 },
476 'sources!': [ 479 ],
477 'drag_utils_linux.cc',
478 ]
479 }],
480 ['toolkit_uses_gtk == 1', { 480 ['toolkit_uses_gtk == 1', {
481 'dependencies': [ 481 'dependencies': [
482 '../build/linux/system.gyp:gtk', 482 '../build/linux/system.gyp:gtk',
483 '../build/linux/system.gyp:x11', 483 '../build/linux/system.gyp:x11',
484 '../build/linux/system.gyp:xext', 484 '../build/linux/system.gyp:xext',
485 ], 485 ],
486 'sources!': [ 486 'sources!': [
487 'accessibility/native_view_accessibility_win.cc', 487 'accessibility/native_view_accessibility_win.cc',
488 'controls/scrollbar/bitmap_scroll_bar.cc', 488 'controls/scrollbar/bitmap_scroll_bar.cc',
489 'controls/native_control.cc', 489 'controls/native_control.cc',
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
933 'include_dirs': [ 933 'include_dirs': [
934 '../third_party/wtl/include', 934 '../third_party/wtl/include',
935 ], 935 ],
936 }], 936 }],
937 ], 937 ],
938 }, 938 },
939 ], 939 ],
940 }], 940 }],
941 ], 941 ],
942 } 942 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698