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

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

Issue 10871020: Move Fullscreen stuff onto FullscreenHandler type that hangs off NWW. This is the first step in mov… (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 | « chrome/browser/ui/views/frame/browser_view.cc ('k') | ui/views/widget/native_widget_win.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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 'widget/widget_hwnd_utils.h', 347 'widget/widget_hwnd_utils.h',
348 'widget/widget_message_filter.cc', 348 'widget/widget_message_filter.cc',
349 'widget/widget_message_filter.h', 349 'widget/widget_message_filter.h',
350 'widget/widget_observer.h', 350 'widget/widget_observer.h',
351 'widget/x11_desktop_handler.cc', 351 'widget/x11_desktop_handler.cc',
352 'widget/x11_desktop_handler.h', 352 'widget/x11_desktop_handler.h',
353 'widget/x11_desktop_window_move_client.cc', 353 'widget/x11_desktop_window_move_client.cc',
354 'widget/x11_desktop_window_move_client.h', 354 'widget/x11_desktop_window_move_client.h',
355 'widget/x11_window_event_filter.cc', 355 'widget/x11_window_event_filter.cc',
356 'widget/x11_window_event_filter.h', 356 'widget/x11_window_event_filter.h',
357 'win/fullscreen_handler.cc',
358 'win/fullscreen_handler.h',
357 'win/hwnd_message_handler.cc', 359 'win/hwnd_message_handler.cc',
358 'win/hwnd_message_handler.h', 360 'win/hwnd_message_handler.h',
359 'win/hwnd_message_handler_delegate.h', 361 'win/hwnd_message_handler_delegate.h',
362 'win/scoped_fullscreen_visibility.cc',
363 'win/scoped_fullscreen_visibility.h',
360 'window/client_view.cc', 364 'window/client_view.cc',
361 'window/client_view.h', 365 'window/client_view.h',
362 'window/custom_frame_view.cc', 366 'window/custom_frame_view.cc',
363 'window/custom_frame_view.h', 367 'window/custom_frame_view.h',
364 'window/dialog_client_view.cc', 368 'window/dialog_client_view.cc',
365 'window/dialog_client_view.h', 369 'window/dialog_client_view.h',
366 'window/dialog_delegate.cc', 370 'window/dialog_delegate.cc',
367 'window/dialog_delegate.h', 371 'window/dialog_delegate.h',
368 'window/frame_background.cc', 372 'window/frame_background.cc',
369 'window/frame_background.h', 373 'window/frame_background.h',
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 ], 448 ],
445 }], 449 }],
446 ['use_aura==0 or OS!="win"', { 450 ['use_aura==0 or OS!="win"', {
447 'sources!': [ 451 'sources!': [
448 'widget/widget_message_filter.cc', 452 'widget/widget_message_filter.cc',
449 'widget/widget_message_filter.h', 453 'widget/widget_message_filter.h',
450 ], 454 ],
451 }], 455 }],
452 ['use_aura==1 or OS!="win"', { 456 ['use_aura==1 or OS!="win"', {
453 'sources!': [ 457 'sources!': [
458 'win/fullscreen_handler.cc',
459 'win/fullscreen_handler.h',
454 'win/hwnd_message_handler.cc', 460 'win/hwnd_message_handler.cc',
455 'win/hwnd_message_handler.h', 461 'win/hwnd_message_handler.h',
456 'win/hwnd_message_handler_delegate.h', 462 'win/hwnd_message_handler_delegate.h',
463 'win/scoped_fullscreen_visibility.cc',
464 'win/scoped_fullscreen_visibility.h',
457 ], 465 ],
458 }], 466 }],
459 ['OS!="win"', { 467 ['OS!="win"', {
460 'sources!': [ 468 'sources!': [
469 'win/fullscreen_handler.cc',
470 'win/fullscreen_handler.h',
461 'win/hwnd_message_handler.cc', 471 'win/hwnd_message_handler.cc',
462 'win/hwnd_message_handler.h', 472 'win/hwnd_message_handler.h',
463 'win/hwnd_message_handler_delegate.h', 473 'win/hwnd_message_handler_delegate.h',
474 'win/scoped_fullscreen_visibility.cc',
475 'win/scoped_fullscreen_visibility.h',
464 'widget/widget_hwnd_utils.cc', 476 'widget/widget_hwnd_utils.cc',
465 'widget/widget_hwnd_utils.h', 477 'widget/widget_hwnd_utils.h',
466 ], 478 ],
467 }], 479 }],
468 ], 480 ],
469 }, # target_name: views 481 }, # target_name: views
470 { 482 {
471 'target_name': 'test_support_views', 483 'target_name': 'test_support_views',
472 'type': 'static_library', 484 'type': 'static_library',
473 'dependencies': [ 485 'dependencies': [
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 'sources/': [ 754 'sources/': [
743 # This is needed because the aura rule strips it from the default 755 # This is needed because the aura rule strips it from the default
744 # sources list. 756 # sources list.
745 ['include', '^../../content/app/startup_helper_win.cc'], 757 ['include', '^../../content/app/startup_helper_win.cc'],
746 ], 758 ],
747 }], 759 }],
748 ], 760 ],
749 }, # target_name: views_examples_with_content_exe 761 }, # target_name: views_examples_with_content_exe
750 ], 762 ],
751 } 763 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/frame/browser_view.cc ('k') | ui/views/widget/native_widget_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698