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

Side by Side Diff: ui/views/BUILD.gn

Issue 2471033005: Adds DesktopWindowTreeHostMus (Closed)
Patch Set: fix Created 4 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//ui/ozone/ozone.gni") 8 import("//ui/ozone/ozone.gni")
9 9
10 config("flags") { 10 config("flags") {
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 "linux_ui/window_button_order_provider.cc", 436 "linux_ui/window_button_order_provider.cc",
437 ] 437 ]
438 } 438 }
439 439
440 if (is_chromeos) { 440 if (is_chromeos) {
441 sources -= [ 441 sources -= [
442 "controls/menu/menu_config_linux.cc", 442 "controls/menu/menu_config_linux.cc",
443 "linux_ui/status_icon_linux.cc", 443 "linux_ui/status_icon_linux.cc",
444 "linux_ui/status_icon_linux.h", 444 "linux_ui/status_icon_linux.h",
445 ] 445 ]
446 sources += [
447 "widget/desktop_aura/desktop_cursor_loader_updater_chromeos.cc",
448 "widget/desktop_aura/desktop_window_tree_host_chromeos.cc",
449 ]
446 } 450 }
447 451
448 if (is_win) { 452 if (is_win) {
449 sources += [ 453 sources += [
450 "widget/widget_hwnd_utils.cc", 454 "widget/widget_hwnd_utils.cc",
451 "widget/widget_hwnd_utils.h", 455 "widget/widget_hwnd_utils.h",
452 "win/fullscreen_handler.cc", 456 "win/fullscreen_handler.cc",
453 "win/fullscreen_handler.h", 457 "win/fullscreen_handler.h",
454 "win/hwnd_message_handler.cc", 458 "win/hwnd_message_handler.cc",
455 "win/hwnd_message_handler.h", 459 "win/hwnd_message_handler.h",
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 "event_monitor_aura.h", 529 "event_monitor_aura.h",
526 "metrics_aura.cc", 530 "metrics_aura.cc",
527 "native_cursor_aura.cc", 531 "native_cursor_aura.cc",
528 "touchui/touch_selection_controller_impl.cc", 532 "touchui/touch_selection_controller_impl.cc",
529 "touchui/touch_selection_controller_impl.h", 533 "touchui/touch_selection_controller_impl.h",
530 "touchui/touch_selection_menu_runner_views.cc", 534 "touchui/touch_selection_menu_runner_views.cc",
531 "touchui/touch_selection_menu_runner_views.h", 535 "touchui/touch_selection_menu_runner_views.h",
532 "view_constants_aura.cc", 536 "view_constants_aura.cc",
533 "view_constants_aura.h", 537 "view_constants_aura.h",
534 "views_touch_selection_controller_factory_aura.cc", 538 "views_touch_selection_controller_factory_aura.cc",
539 "widget/desktop_aura/desktop_capture_client.cc",
540 "widget/desktop_aura/desktop_capture_client.h",
541 "widget/desktop_aura/desktop_cursor_loader_updater.h",
542 "widget/desktop_aura/desktop_drop_target_win.cc",
543 "widget/desktop_aura/desktop_drop_target_win.h",
544 "widget/desktop_aura/desktop_event_client.cc",
545 "widget/desktop_aura/desktop_event_client.h",
546 "widget/desktop_aura/desktop_focus_rules.cc",
547 "widget/desktop_aura/desktop_focus_rules.h",
548 "widget/desktop_aura/desktop_native_cursor_manager.cc",
549 "widget/desktop_aura/desktop_native_cursor_manager.h",
550 "widget/desktop_aura/desktop_native_widget_aura.cc",
551 "widget/desktop_aura/desktop_native_widget_aura.h",
552 "widget/desktop_aura/desktop_screen.h",
553 "widget/desktop_aura/desktop_screen_position_client.cc",
554 "widget/desktop_aura/desktop_screen_position_client.h",
555 "widget/desktop_aura/desktop_window_tree_host.h",
535 "widget/focus_manager_event_handler.cc", 556 "widget/focus_manager_event_handler.cc",
536 "widget/focus_manager_event_handler.h", 557 "widget/focus_manager_event_handler.h",
537 "widget/native_widget_aura.cc", 558 "widget/native_widget_aura.cc",
538 "widget/native_widget_aura.h", 559 "widget/native_widget_aura.h",
539 "widget/tooltip_manager_aura.cc", 560 "widget/tooltip_manager_aura.cc",
540 "widget/tooltip_manager_aura.h", 561 "widget/tooltip_manager_aura.h",
541 "widget/window_reorderer.cc", 562 "widget/window_reorderer.cc",
542 "widget/window_reorderer.h", 563 "widget/window_reorderer.h",
543 ] 564 ]
544 deps += [ 565 deps += [
545 "//ui/aura", 566 "//ui/aura",
546 "//ui/touch_selection", 567 "//ui/touch_selection",
547 "//ui/wm", 568 "//ui/wm",
548 ] 569 ]
549 if (!is_chromeos) { 570 if (!is_chromeos) {
550 sources += [
551 "widget/desktop_aura/desktop_capture_client.cc",
552 "widget/desktop_aura/desktop_capture_client.h",
553 "widget/desktop_aura/desktop_cursor_loader_updater.h",
554 "widget/desktop_aura/desktop_drop_target_win.cc",
555 "widget/desktop_aura/desktop_drop_target_win.h",
556 "widget/desktop_aura/desktop_event_client.cc",
557 "widget/desktop_aura/desktop_event_client.h",
558 "widget/desktop_aura/desktop_focus_rules.cc",
559 "widget/desktop_aura/desktop_focus_rules.h",
560 "widget/desktop_aura/desktop_native_cursor_manager.cc",
561 "widget/desktop_aura/desktop_native_cursor_manager.h",
562 "widget/desktop_aura/desktop_native_widget_aura.cc",
563 "widget/desktop_aura/desktop_native_widget_aura.h",
564 "widget/desktop_aura/desktop_screen.h",
565 "widget/desktop_aura/desktop_screen_position_client.cc",
566 "widget/desktop_aura/desktop_screen_position_client.h",
567 "widget/desktop_aura/desktop_window_tree_host.h",
568 ]
569 if (use_x11) { 571 if (use_x11) {
570 sources += [ 572 sources += [
571 "widget/desktop_aura/desktop_drag_drop_client_aurax11.cc", 573 "widget/desktop_aura/desktop_drag_drop_client_aurax11.cc",
572 "widget/desktop_aura/desktop_drag_drop_client_aurax11.h", 574 "widget/desktop_aura/desktop_drag_drop_client_aurax11.h",
573 "widget/desktop_aura/desktop_screen_x11.cc", 575 "widget/desktop_aura/desktop_screen_x11.cc",
574 "widget/desktop_aura/desktop_screen_x11.h", 576 "widget/desktop_aura/desktop_screen_x11.h",
575 "widget/desktop_aura/desktop_window_tree_host_x11.cc", 577 "widget/desktop_aura/desktop_window_tree_host_x11.cc",
576 "widget/desktop_aura/desktop_window_tree_host_x11.h", 578 "widget/desktop_aura/desktop_window_tree_host_x11.h",
577 "widget/desktop_aura/x11_desktop_handler.cc", 579 "widget/desktop_aura/x11_desktop_handler.cc",
578 "widget/desktop_aura/x11_desktop_handler.h", 580 "widget/desktop_aura/x11_desktop_handler.h",
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
1017 "//ui/base:test_support", 1019 "//ui/base:test_support",
1018 "//ui/compositor", 1020 "//ui/compositor",
1019 "//ui/events:test_support", 1021 "//ui/events:test_support",
1020 "//ui/gl:test_support", 1022 "//ui/gl:test_support",
1021 "//ui/resources", 1023 "//ui/resources",
1022 "//ui/resources:ui_test_pak", 1024 "//ui/resources:ui_test_pak",
1023 "//ui/strings", 1025 "//ui/strings",
1024 ] 1026 ]
1025 } 1027 }
1026 } 1028 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698