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

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: sync 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',
363 'widget/desktop_aura/desktop_drop_target_win.cc',
364 'widget/desktop_aura/desktop_drop_target_win.h',
361 'widget/desktop_aura/desktop_layout_manager.cc', 365 'widget/desktop_aura/desktop_layout_manager.cc',
362 'widget/desktop_aura/desktop_layout_manager.h', 366 'widget/desktop_aura/desktop_layout_manager.h',
363 'widget/desktop_aura/desktop_native_widget_aura.cc', 367 'widget/desktop_aura/desktop_native_widget_aura.cc',
364 'widget/desktop_aura/desktop_native_widget_aura.h', 368 'widget/desktop_aura/desktop_native_widget_aura.h',
365 'widget/desktop_aura/desktop_root_window_host.h', 369 'widget/desktop_aura/desktop_root_window_host.h',
366 'widget/desktop_aura/desktop_root_window_host_linux.cc', 370 'widget/desktop_aura/desktop_root_window_host_linux.cc',
367 'widget/desktop_aura/desktop_root_window_host_linux.h', 371 'widget/desktop_aura/desktop_root_window_host_linux.h',
368 'widget/desktop_aura/desktop_root_window_host_win.cc', 372 'widget/desktop_aura/desktop_root_window_host_win.cc',
369 'widget/desktop_aura/desktop_root_window_host_win.h', 373 'widget/desktop_aura/desktop_root_window_host_win.h',
370 'widget/desktop_aura/desktop_screen.h', 374 'widget/desktop_aura/desktop_screen.h',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 'sources/': [ 471 'sources/': [
468 ['exclude', 'mouse_watcher.cc'], 472 ['exclude', 'mouse_watcher.cc'],
469 ['exclude', 'controls/menu/'], 473 ['exclude', 'controls/menu/'],
470 ['exclude', 'controls/scrollbar/'], 474 ['exclude', 'controls/scrollbar/'],
471 ['exclude', 'focus/accelerator_handler_aura.cc'], 475 ['exclude', 'focus/accelerator_handler_aura.cc'],
472 ], 476 ],
473 }], 477 }],
474 ['OS=="win"', { 478 ['OS=="win"', {
475 'sources/': [ 479 'sources/': [
476 ['include', 'widget/desktop_aura/desktop_screen_win.cc'], 480 ['include', 'widget/desktop_aura/desktop_screen_win.cc'],
477 ['include', 'widget/desktop_aura/desktop_screen_win.h'], 481 ['include', 'widget/desktop_aura/desktop_drag_drop_client_win.cc '],
482 ['include', 'widget/desktop_aura/desktop_drop_target_win.cc'],
478 ['include', 'widget/desktop_aura/desktop_root_window_host_win.cc '], 483 ['include', 'widget/desktop_aura/desktop_root_window_host_win.cc '],
479 ['include', 'widget/desktop_aura/desktop_root_window_host_win.h' ],
480 ], 484 ],
481 }], 485 }],
482 ], 486 ],
483 }], 487 }],
484 ['use_aura==0', { 488 ['use_aura==0', {
485 'sources/': [ 489 'sources/': [
486 ['exclude', 'corewm'], 490 ['exclude', 'corewm'],
487 ['exclude', 'widget/desktop_aura'], 491 ['exclude', 'widget/desktop_aura'],
488 ], 492 ],
489 'sources!': [ 493 'sources!': [
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
969 'sources/': [ 973 'sources/': [
970 # This is needed because the aura rule strips it from the default 974 # This is needed because the aura rule strips it from the default
971 # sources list. 975 # sources list.
972 ['include', '^../../content/app/startup_helper_win.cc'], 976 ['include', '^../../content/app/startup_helper_win.cc'],
973 ], 977 ],
974 }], 978 }],
975 ], 979 ],
976 }, # target_name: views_examples_with_content_exe 980 }, # target_name: views_examples_with_content_exe
977 ], 981 ],
978 } 982 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698