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

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 '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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 'controls/textfield/native_textfield_views.h', 251 'controls/textfield/native_textfield_views.h',
252 'controls/throbber.cc', 252 'controls/throbber.cc',
253 'controls/throbber.h', 253 'controls/throbber.h',
254 'controls/tree/tree_view.cc', 254 'controls/tree/tree_view.cc',
255 'controls/tree/tree_view.h', 255 'controls/tree/tree_view.h',
256 #'debug_utils.cc', 256 #'debug_utils.cc',
257 #'debug_utils.h', 257 #'debug_utils.h',
258 'drag_controller.h', 258 'drag_controller.h',
259 'drag_utils.cc', 259 'drag_utils.cc',
260 'drag_utils.h', 260 'drag_utils.h',
261 'drag_utils_aura.cc',
261 'drag_utils_gtk.cc', 262 'drag_utils_gtk.cc',
262 'drag_utils_linux.cc', 263 'drag_utils_linux.cc',
263 'drag_utils_win.cc', 264 'drag_utils_win.cc',
264 'events/event.cc', 265 'events/event.cc',
265 'events/event.h', 266 'events/event.h',
266 'events/event_aura.cc', 267 'events/event_aura.cc',
267 'events/event_gtk.cc', 268 'events/event_gtk.cc',
268 'events/event_wayland.cc', 269 'events/event_wayland.cc',
269 'events/event_win.cc', 270 'events/event_win.cc',
270 'events/event_x.cc', 271 'events/event_x.cc',
(...skipping 159 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',
440 'controls/menu/menu_config_linux.cc', 442 'controls/menu/menu_config_linux.cc',
441 'controls/menu/menu_item_view_linux.cc', 443 'controls/menu/menu_item_view_linux.cc',
442 'controls/menu/menu_separator_linux.cc', 444 'controls/menu/menu_separator_linux.cc',
443 'controls/native_control.cc', 445 'controls/native_control.cc',
444 'controls/native_control.h', 446 'controls/native_control.h',
445 'controls/scrollbar/bitmap_scroll_bar.cc', 447 'controls/scrollbar/bitmap_scroll_bar.cc',
446 'controls/scrollbar/bitmap_scroll_bar.h', 448 'controls/scrollbar/bitmap_scroll_bar.h',
447 'controls/tabbed_pane/tabbed_pane.cc', 449 'controls/tabbed_pane/tabbed_pane.cc',
448 'controls/tabbed_pane/tabbed_pane.h', 450 'controls/tabbed_pane/tabbed_pane.h',
449 'controls/table/group_table_view.cc', 451 'controls/table/group_table_view.cc',
450 'controls/table/group_table_view.h', 452 'controls/table/group_table_view.h',
451 'controls/table/native_table_wrapper.h', 453 'controls/table/native_table_wrapper.h',
452 'controls/table/table_view.cc', 454 'controls/table/table_view.cc',
453 'controls/table/table_view.h', 455 'controls/table/table_view.h',
454 'controls/table/table_view2.cc', 456 'controls/table/table_view2.cc',
455 'controls/table/table_view2.h', 457 'controls/table/table_view2.h',
456 'controls/table/table_view_observer.h', 458 'controls/table/table_view_observer.h',
457 'controls/tree/tree_view.cc', 459 'controls/tree/tree_view.cc',
458 'controls/tree/tree_view.h', 460 'controls/tree/tree_view.h',
459 'focus/accelerator_handler_touch.cc', 461 'focus/accelerator_handler_touch.cc',
460 'widget/aero_tooltip_manager.cc', 462 'widget/aero_tooltip_manager.cc',
461 'widget/aero_tooltip_manager.h', 463 'widget/aero_tooltip_manager.h',
462 'widget/child_window_message_processor.cc', 464 'widget/child_window_message_processor.cc',
463 'widget/child_window_message_processor.h', 465 'widget/child_window_message_processor.h',
464 ], 466 ],
465 'conditions': [ 467 'conditions': [
466 ['OS=="win"', { 468 ['OS=="win"', {
467 'sources/': [ 469 'sources/': [
468 ['include', 'drag_utils_win.cc'], 470 ['include', 'drag_utils_win.cc'],
471 ['exclude', 'drag_utils_aura.cc'],
Ben Goodger (Google) 2011/11/16 00:13:20 seems like we want to build this on win too when a
varunjain 2011/11/16 20:30:15 Done.
469 ], 472 ],
470 }], 473 }],
471 ], 474 ],
472 }, { # else: use_aura==1 475 },
473 'sources!': [ 476 ],
474 'drag_utils_linux.cc',
475 ]
476 }],
477 ['toolkit_uses_gtk == 1', { 477 ['toolkit_uses_gtk == 1', {
478 'dependencies': [ 478 'dependencies': [
479 '../build/linux/system.gyp:gtk', 479 '../build/linux/system.gyp:gtk',
480 '../build/linux/system.gyp:x11', 480 '../build/linux/system.gyp:x11',
481 '../build/linux/system.gyp:xext', 481 '../build/linux/system.gyp:xext',
482 ], 482 ],
483 'sources!': [ 483 'sources!': [
484 'accessibility/native_view_accessibility_win.cc', 484 'accessibility/native_view_accessibility_win.cc',
485 'controls/scrollbar/bitmap_scroll_bar.cc', 485 'controls/scrollbar/bitmap_scroll_bar.cc',
486 'controls/native_control.cc', 486 'controls/native_control.cc',
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
930 'include_dirs': [ 930 'include_dirs': [
931 '../third_party/wtl/include', 931 '../third_party/wtl/include',
932 ], 932 ],
933 }], 933 }],
934 ], 934 ],
935 }, 935 },
936 ], 936 ],
937 }], 937 }],
938 ], 938 ],
939 } 939 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698