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

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

Issue 10836266: Begin to move some message handling from NWW onto a framework-agnostic HWND Message handler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 months 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 | « no previous file | ui/views/widget/hwnd_message_handler.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) 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 8
9 'target_defaults': { 9 'target_defaults': {
10 'conditions': [ 10 'conditions': [
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 'widget/child_window_message_processor.cc', 314 'widget/child_window_message_processor.cc',
315 'widget/child_window_message_processor.h', 315 'widget/child_window_message_processor.h',
316 'widget/default_theme_provider.cc', 316 'widget/default_theme_provider.cc',
317 'widget/default_theme_provider.h', 317 'widget/default_theme_provider.h',
318 'widget/desktop_native_widget_helper_aura.cc', 318 'widget/desktop_native_widget_helper_aura.cc',
319 'widget/desktop_native_widget_helper_aura.h', 319 'widget/desktop_native_widget_helper_aura.h',
320 'widget/drop_helper.cc', 320 'widget/drop_helper.cc',
321 'widget/drop_helper.h', 321 'widget/drop_helper.h',
322 'widget/drop_target_win.cc', 322 'widget/drop_target_win.cc',
323 'widget/drop_target_win.h', 323 'widget/drop_target_win.h',
324 'widget/hwnd_message_handler.cc',
325 'widget/hwnd_message_handler.h',
326 'widget/hwnd_message_handler_delegate.h',
324 'widget/root_view.cc', 327 'widget/root_view.cc',
325 'widget/root_view.h', 328 'widget/root_view.h',
326 'widget/tooltip_manager_aura.cc', 329 'widget/tooltip_manager_aura.cc',
327 'widget/tooltip_manager_aura.h', 330 'widget/tooltip_manager_aura.h',
328 'widget/tooltip_manager_win.cc', 331 'widget/tooltip_manager_win.cc',
329 'widget/tooltip_manager_win.h', 332 'widget/tooltip_manager_win.h',
330 'widget/tooltip_manager.cc', 333 'widget/tooltip_manager.cc',
331 'widget/tooltip_manager.h', 334 'widget/tooltip_manager.h',
332 'widget/monitor_win.cc', 335 'widget/monitor_win.cc',
333 'widget/monitor_win.h', 336 'widget/monitor_win.h',
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 'sources!': [ 440 'sources!': [
438 'events/event_x.cc', 441 'events/event_x.cc',
439 ], 442 ],
440 }], 443 }],
441 ['use_aura==0 or OS!="win"', { 444 ['use_aura==0 or OS!="win"', {
442 'sources!': [ 445 'sources!': [
443 'widget/widget_message_filter.cc', 446 'widget/widget_message_filter.cc',
444 'widget/widget_message_filter.h', 447 'widget/widget_message_filter.h',
445 ], 448 ],
446 }], 449 }],
450 ['use_aura==1 or OS!="win"', {
451 'sources!': [
452 'widget/hwnd_message_handler.cc',
453 'widget/hwnd_message_handler.h',
454 'widget/hwnd_message_handler_delegate.h',
455 ],
456 }],
447 ['OS!="win"', { 457 ['OS!="win"', {
448 'sources!': [ 458 'sources!': [
459 'widget/hwnd_message_handler.cc',
460 'widget/hwnd_message_handler.h',
461 'widget/hwnd_message_handler_delegate.h',
449 'widget/widget_hwnd_utils.cc', 462 'widget/widget_hwnd_utils.cc',
450 'widget/widget_hwnd_utils.h', 463 'widget/widget_hwnd_utils.h',
451 ], 464 ],
452 }], 465 }],
453 ], 466 ],
454 }, # target_name: views 467 }, # target_name: views
455 { 468 {
456 'target_name': 'test_support_views', 469 'target_name': 'test_support_views',
457 'type': 'static_library', 470 'type': 'static_library',
458 'dependencies': [ 471 'dependencies': [
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 'sources/': [ 739 'sources/': [
727 # This is needed because the aura rule strips it from the default 740 # This is needed because the aura rule strips it from the default
728 # sources list. 741 # sources list.
729 ['include', '^../../content/app/startup_helper_win.cc'], 742 ['include', '^../../content/app/startup_helper_win.cc'],
730 ], 743 ],
731 }], 744 }],
732 ], 745 ],
733 }, # target_name: views_examples_with_content_exe 746 }, # target_name: views_examples_with_content_exe
734 ], 747 ],
735 } 748 }
OLDNEW
« no previous file with comments | « no previous file | ui/views/widget/hwnd_message_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698