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: 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: minor changes 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'target_defaults': { 10 'target_defaults': {
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 'controls/textfield/native_textfield_views.h', 247 'controls/textfield/native_textfield_views.h',
248 'controls/throbber.cc', 248 'controls/throbber.cc',
249 'controls/throbber.h', 249 'controls/throbber.h',
250 'controls/tree/tree_view.cc', 250 'controls/tree/tree_view.cc',
251 'controls/tree/tree_view.h', 251 'controls/tree/tree_view.h',
252 #'debug_utils.cc', 252 #'debug_utils.cc',
253 #'debug_utils.h', 253 #'debug_utils.h',
254 'drag_controller.h', 254 'drag_controller.h',
255 'drag_utils.cc', 255 'drag_utils.cc',
256 'drag_utils.h', 256 'drag_utils.h',
257 'drag_utils_aura.cc',
257 'drag_utils_gtk.cc', 258 'drag_utils_gtk.cc',
258 'drag_utils_linux.cc', 259 'drag_utils_linux.cc',
259 'drag_utils_win.cc', 260 'drag_utils_win.cc',
260 'events/event.cc', 261 'events/event.cc',
261 'events/event.h', 262 'events/event.h',
262 'events/event_aura.cc', 263 'events/event_aura.cc',
263 'events/event_gtk.cc', 264 'events/event_gtk.cc',
264 'events/event_wayland.cc', 265 'events/event_wayland.cc',
265 'events/event_win.cc', 266 'events/event_win.cc',
266 'events/event_x.cc', 267 'events/event_x.cc',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 ['include', 'widget/tooltip_manager_views.cc'], 428 ['include', 'widget/tooltip_manager_views.cc'],
428 ], 429 ],
429 }], 430 }],
430 ['use_aura==1', { 431 ['use_aura==1', {
431 'sources/': [ 432 'sources/': [
432 ['exclude', '_(gtk|x)\\.cc$'], 433 ['exclude', '_(gtk|x)\\.cc$'],
433 ['exclude', '/(gtk|x)_[^/]*\\.cc$'], 434 ['exclude', '/(gtk|x)_[^/]*\\.cc$'],
434 ['exclude', 'controls/menu/menu_2.*'], 435 ['exclude', 'controls/menu/menu_2.*'],
435 ], 436 ],
436 'sources!': [ 437 'sources!': [
438 'drag_utils_linux.cc',
437 'controls/menu/menu_config_linux.cc', 439 'controls/menu/menu_config_linux.cc',
438 'controls/menu/menu_item_view_linux.cc', 440 'controls/menu/menu_item_view_linux.cc',
439 'controls/menu/menu_separator_linux.cc', 441 'controls/menu/menu_separator_linux.cc',
440 'controls/native_control.cc', 442 'controls/native_control.cc',
441 'controls/native_control.h', 443 'controls/native_control.h',
442 'controls/scrollbar/bitmap_scroll_bar.cc', 444 'controls/scrollbar/bitmap_scroll_bar.cc',
443 'controls/scrollbar/bitmap_scroll_bar.h', 445 'controls/scrollbar/bitmap_scroll_bar.h',
444 'controls/tabbed_pane/tabbed_pane.cc', 446 'controls/tabbed_pane/tabbed_pane.cc',
445 'controls/tabbed_pane/tabbed_pane.h', 447 'controls/tabbed_pane/tabbed_pane.h',
446 'controls/table/group_table_view.cc', 448 'controls/table/group_table_view.cc',
447 'controls/table/group_table_view.h', 449 'controls/table/group_table_view.h',
448 'controls/table/native_table_wrapper.h', 450 'controls/table/native_table_wrapper.h',
449 'controls/table/table_view.cc', 451 'controls/table/table_view.cc',
450 'controls/table/table_view.h', 452 'controls/table/table_view.h',
451 'controls/table/table_view2.cc', 453 'controls/table/table_view2.cc',
452 'controls/table/table_view2.h', 454 'controls/table/table_view2.h',
453 'controls/table/table_view_observer.h', 455 'controls/table/table_view_observer.h',
454 'controls/tree/tree_view.cc', 456 'controls/tree/tree_view.cc',
455 'controls/tree/tree_view.h', 457 'controls/tree/tree_view.h',
456 'focus/accelerator_handler_touch.cc', 458 'focus/accelerator_handler_touch.cc',
457 'widget/aero_tooltip_manager.cc', 459 'widget/aero_tooltip_manager.cc',
458 'widget/aero_tooltip_manager.h', 460 'widget/aero_tooltip_manager.h',
459 'widget/child_window_message_processor.cc', 461 'widget/child_window_message_processor.cc',
460 'widget/child_window_message_processor.h', 462 'widget/child_window_message_processor.h',
461 ], 463 ],
462 'conditions': [ 464 'conditions': [
463 ['OS=="win"', { 465 ['OS=="win"', {
464 'sources/': [ 466 'sources/': [
465 ['include', 'drag_utils_win.cc'], 467 ['include', 'drag_utils_win.cc'],
468 ['exclude', 'drag_utils_aura.cc'],
Ben Goodger (Google) 2011/11/07 20:33:36 ??
varunjain 2011/11/08 21:59:35 Done.
466 ], 469 ],
467 }], 470 }],
468 ], 471 ],
469 }, { # else: use_aura==1 472 },
470 'sources!': [ 473 ],
471 'drag_utils_linux.cc',
472 ]
473 }],
474 ['toolkit_uses_gtk == 1', { 474 ['toolkit_uses_gtk == 1', {
475 'dependencies': [ 475 'dependencies': [
476 '../build/linux/system.gyp:gtk', 476 '../build/linux/system.gyp:gtk',
477 '../build/linux/system.gyp:x11', 477 '../build/linux/system.gyp:x11',
478 '../build/linux/system.gyp:xext', 478 '../build/linux/system.gyp:xext',
479 ], 479 ],
480 'sources!': [ 480 'sources!': [
481 'accessibility/native_view_accessibility_win.cc', 481 'accessibility/native_view_accessibility_win.cc',
482 'controls/scrollbar/bitmap_scroll_bar.cc', 482 'controls/scrollbar/bitmap_scroll_bar.cc',
483 'controls/native_control.cc', 483 'controls/native_control.cc',
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
953 'dependencies': [ 953 'dependencies': [
954 '../chrome/chrome.gyp:packed_resources', 954 '../chrome/chrome.gyp:packed_resources',
955 ], 955 ],
956 }], 956 }],
957 ], 957 ],
958 }, 958 },
959 ], 959 ],
960 }], 960 }],
961 ], 961 ],
962 } 962 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698