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

Side by Side Diff: ui/views/views.gyp

Issue 11444013: Get drag and drop working for win aura. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: move DropTargetWin to DesktopDragDropClientWin 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'target_defaults': { 8 'target_defaults': {
9 'conditions': [ 9 'conditions': [
10 ['use_aura==1', { 10 ['use_aura==1', {
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 'widget/child_window_message_processor.cc', 351 'widget/child_window_message_processor.cc',
352 'widget/child_window_message_processor.h', 352 'widget/child_window_message_processor.h',
353 'widget/default_theme_provider.cc', 353 'widget/default_theme_provider.cc',
354 'widget/default_theme_provider.h', 354 'widget/default_theme_provider.h',
355 'widget/desktop_aura/desktop_activation_client.cc', 355 'widget/desktop_aura/desktop_activation_client.cc',
356 'widget/desktop_aura/desktop_activation_client.h', 356 'widget/desktop_aura/desktop_activation_client.h',
357 'widget/desktop_aura/desktop_cursor_client.cc', 357 'widget/desktop_aura/desktop_cursor_client.cc',
358 'widget/desktop_aura/desktop_cursor_client.h', 358 'widget/desktop_aura/desktop_cursor_client.h',
359 'widget/desktop_aura/desktop_dispatcher_client.cc', 359 'widget/desktop_aura/desktop_dispatcher_client.cc',
360 'widget/desktop_aura/desktop_dispatcher_client.h', 360 'widget/desktop_aura/desktop_dispatcher_client.h',
361 'widget/desktop_aura/desktop_drag_drop_client_win.cc',
362 'widget/desktop_aura/desktop_drag_drop_client_win.h',
361 'widget/desktop_aura/desktop_layout_manager.cc', 363 'widget/desktop_aura/desktop_layout_manager.cc',
362 'widget/desktop_aura/desktop_layout_manager.h', 364 'widget/desktop_aura/desktop_layout_manager.h',
363 'widget/desktop_aura/desktop_native_widget_aura.cc', 365 'widget/desktop_aura/desktop_native_widget_aura.cc',
364 'widget/desktop_aura/desktop_native_widget_aura.h', 366 'widget/desktop_aura/desktop_native_widget_aura.h',
365 'widget/desktop_aura/desktop_root_window_host.h', 367 'widget/desktop_aura/desktop_root_window_host.h',
366 'widget/desktop_aura/desktop_root_window_host_linux.cc', 368 'widget/desktop_aura/desktop_root_window_host_linux.cc',
367 'widget/desktop_aura/desktop_root_window_host_linux.h', 369 'widget/desktop_aura/desktop_root_window_host_linux.h',
368 'widget/desktop_aura/desktop_root_window_host_win.cc', 370 'widget/desktop_aura/desktop_root_window_host_win.cc',
369 'widget/desktop_aura/desktop_root_window_host_win.h', 371 'widget/desktop_aura/desktop_root_window_host_win.h',
370 'widget/desktop_aura/desktop_screen.h', 372 'widget/desktop_aura/desktop_screen.h',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 'sources/': [ 469 'sources/': [
468 ['exclude', 'mouse_watcher.cc'], 470 ['exclude', 'mouse_watcher.cc'],
469 ['exclude', 'controls/menu/'], 471 ['exclude', 'controls/menu/'],
470 ['exclude', 'controls/scrollbar/'], 472 ['exclude', 'controls/scrollbar/'],
471 ['exclude', 'focus/accelerator_handler_aura.cc'], 473 ['exclude', 'focus/accelerator_handler_aura.cc'],
472 ], 474 ],
473 }], 475 }],
474 ['OS=="win"', { 476 ['OS=="win"', {
475 'sources/': [ 477 'sources/': [
476 ['include', 'ime/input_method_win.cc'], 478 ['include', 'ime/input_method_win.cc'],
477 ['include', 'ime/input_method_win.h'], 479 ['include', 'widget/desktop_aura/desktop_drag_drop_client_win.cc '],
478 ['include', 'widget/desktop_aura/desktop_screen_win.cc'], 480 ['include', 'widget/desktop_aura/desktop_screen_win.cc'],
479 ['include', 'widget/desktop_aura/desktop_screen_win.h'],
480 ['include', 'widget/desktop_aura/desktop_root_window_host_win.cc '], 481 ['include', 'widget/desktop_aura/desktop_root_window_host_win.cc '],
481 ['include', 'widget/desktop_aura/desktop_root_window_host_win.h' ], 482 ['include', 'widget/drop_target_win.c'],
482 ], 483 ],
483 }], 484 }],
484 ], 485 ],
485 }], 486 }],
486 ['use_aura==0', { 487 ['use_aura==0', {
487 'sources/': [ 488 'sources/': [
488 ['exclude', 'corewm'], 489 ['exclude', 'corewm'],
489 ['exclude', 'widget/desktop_aura'], 490 ['exclude', 'widget/desktop_aura'],
490 ], 491 ],
491 'sources!': [ 492 'sources!': [
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
971 'sources/': [ 972 'sources/': [
972 # This is needed because the aura rule strips it from the default 973 # This is needed because the aura rule strips it from the default
973 # sources list. 974 # sources list.
974 ['include', '^../../content/app/startup_helper_win.cc'], 975 ['include', '^../../content/app/startup_helper_win.cc'],
975 ], 976 ],
976 }], 977 }],
977 ], 978 ],
978 }, # target_name: views_examples_with_content_exe 979 }, # target_name: views_examples_with_content_exe
979 ], 980 ],
980 } 981 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698