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

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: fixed windows build errors 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
« no previous file with comments | « views/drag_utils_aura.cc ('k') | views/widget/native_widget_aura.h » ('j') | 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 '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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 'controls/textfield/native_textfield_views.h', 249 'controls/textfield/native_textfield_views.h',
250 'controls/throbber.cc', 250 'controls/throbber.cc',
251 'controls/throbber.h', 251 'controls/throbber.h',
252 'controls/tree/tree_view.cc', 252 'controls/tree/tree_view.cc',
253 'controls/tree/tree_view.h', 253 'controls/tree/tree_view.h',
254 #'debug_utils.cc', 254 #'debug_utils.cc',
255 #'debug_utils.h', 255 #'debug_utils.h',
256 'drag_controller.h', 256 'drag_controller.h',
257 'drag_utils.cc', 257 'drag_utils.cc',
258 'drag_utils.h', 258 'drag_utils.h',
259 'drag_utils_aura.cc',
259 'drag_utils_gtk.cc', 260 'drag_utils_gtk.cc',
260 'drag_utils_linux.cc', 261 'drag_utils_linux.cc',
261 'drag_utils_win.cc', 262 'drag_utils_win.cc',
262 'events/event.cc', 263 'events/event.cc',
263 'events/event.h', 264 'events/event.h',
264 'events/event_aura.cc', 265 'events/event_aura.cc',
265 'events/event_gtk.cc', 266 'events/event_gtk.cc',
266 'events/event_wayland.cc', 267 'events/event_wayland.cc',
267 'events/event_win.cc', 268 'events/event_win.cc',
268 'events/event_x.cc', 269 'events/event_x.cc',
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 ['include', 'widget/tooltip_manager_views.cc'], 431 ['include', 'widget/tooltip_manager_views.cc'],
431 ], 432 ],
432 }], 433 }],
433 ['use_aura==1', { 434 ['use_aura==1', {
434 'sources/': [ 435 'sources/': [
435 ['exclude', '_(gtk|x)\\.cc$'], 436 ['exclude', '_(gtk|x)\\.cc$'],
436 ['exclude', '/(gtk|x)_[^/]*\\.cc$'], 437 ['exclude', '/(gtk|x)_[^/]*\\.cc$'],
437 ['exclude', 'controls/menu/menu_2.*'], 438 ['exclude', 'controls/menu/menu_2.*'],
438 ], 439 ],
439 'sources!': [ 440 'sources!': [
441 'drag_utils_linux.cc',
442 'drag_utils_win.cc',
440 'controls/menu/menu_config_linux.cc', 443 'controls/menu/menu_config_linux.cc',
441 'controls/menu/menu_item_view_linux.cc', 444 'controls/menu/menu_item_view_linux.cc',
442 'controls/menu/menu_separator_linux.cc', 445 'controls/menu/menu_separator_linux.cc',
443 'controls/native_control.cc', 446 'controls/native_control.cc',
444 'controls/native_control.h', 447 'controls/native_control.h',
445 'controls/scrollbar/bitmap_scroll_bar.cc', 448 'controls/scrollbar/bitmap_scroll_bar.cc',
446 'controls/scrollbar/bitmap_scroll_bar.h', 449 'controls/scrollbar/bitmap_scroll_bar.h',
447 'controls/tabbed_pane/tabbed_pane.cc', 450 'controls/tabbed_pane/tabbed_pane.cc',
448 'controls/tabbed_pane/tabbed_pane.h', 451 'controls/tabbed_pane/tabbed_pane.h',
449 'controls/table/group_table_view.cc', 452 'controls/table/group_table_view.cc',
450 'controls/table/group_table_view.h', 453 'controls/table/group_table_view.h',
451 'controls/table/native_table_wrapper.h', 454 'controls/table/native_table_wrapper.h',
452 'controls/table/table_view.cc', 455 'controls/table/table_view.cc',
453 'controls/table/table_view.h', 456 'controls/table/table_view.h',
454 'controls/table/table_view2.cc', 457 'controls/table/table_view2.cc',
455 'controls/table/table_view2.h', 458 'controls/table/table_view2.h',
456 'controls/table/table_view_observer.h', 459 'controls/table/table_view_observer.h',
457 'controls/tree/tree_view.cc', 460 'controls/tree/tree_view.cc',
458 'controls/tree/tree_view.h', 461 'controls/tree/tree_view.h',
459 'focus/accelerator_handler_touch.cc', 462 'focus/accelerator_handler_touch.cc',
460 'widget/aero_tooltip_manager.cc', 463 'widget/aero_tooltip_manager.cc',
461 'widget/aero_tooltip_manager.h', 464 'widget/aero_tooltip_manager.h',
462 'widget/child_window_message_processor.cc', 465 'widget/child_window_message_processor.cc',
463 'widget/child_window_message_processor.h', 466 'widget/child_window_message_processor.h',
464 ], 467 ],
465 'conditions': [ 468 },
466 ['OS=="win"', { 469 ],
467 'sources/': [
468 ['include', 'drag_utils_win.cc'],
469 ],
470 }],
471 ],
472 }, { # else: use_aura==1
473 'sources!': [
474 'drag_utils_linux.cc',
475 ]
476 }],
477 ['toolkit_uses_gtk == 1', { 470 ['toolkit_uses_gtk == 1', {
478 'dependencies': [ 471 'dependencies': [
479 '../build/linux/system.gyp:gtk', 472 '../build/linux/system.gyp:gtk',
480 '../build/linux/system.gyp:x11', 473 '../build/linux/system.gyp:x11',
481 '../build/linux/system.gyp:xext', 474 '../build/linux/system.gyp:xext',
482 ], 475 ],
483 'sources!': [ 476 'sources!': [
484 'accessibility/native_view_accessibility_win.cc', 477 'accessibility/native_view_accessibility_win.cc',
485 'controls/scrollbar/bitmap_scroll_bar.cc', 478 'controls/scrollbar/bitmap_scroll_bar.cc',
486 'controls/native_control.cc', 479 'controls/native_control.cc',
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
930 'include_dirs': [ 923 'include_dirs': [
931 '../third_party/wtl/include', 924 '../third_party/wtl/include',
932 ], 925 ],
933 }], 926 }],
934 ], 927 ],
935 }, 928 },
936 ], 929 ],
937 }], 930 }],
938 ], 931 ],
939 } 932 }
OLDNEW
« no previous file with comments | « views/drag_utils_aura.cc ('k') | views/widget/native_widget_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698