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

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

Issue 2948553002: Decouple X11WindowEventFilter into WindowEventFilter parent class. (Closed)
Patch Set: change function order Created 3 years, 5 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
« no previous file with comments | « no previous file | ui/views/widget/desktop_aura/OWNERS » ('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 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/base/ui_features.gni") 8 import("//ui/base/ui_features.gni")
9 import("//ui/ozone/ozone.gni") 9 import("//ui/ozone/ozone.gni")
10 import("//ui/vector_icons/vector_icons.gni") 10 import("//ui/vector_icons/vector_icons.gni")
(...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after
651 "widget/desktop_aura/desktop_drag_drop_client_win.h", 651 "widget/desktop_aura/desktop_drag_drop_client_win.h",
652 "widget/desktop_aura/desktop_screen_win.cc", 652 "widget/desktop_aura/desktop_screen_win.cc",
653 "widget/desktop_aura/desktop_screen_win.h", 653 "widget/desktop_aura/desktop_screen_win.h",
654 "widget/desktop_aura/desktop_window_tree_host_win.cc", 654 "widget/desktop_aura/desktop_window_tree_host_win.cc",
655 "widget/desktop_aura/desktop_window_tree_host_win.h", 655 "widget/desktop_aura/desktop_window_tree_host_win.h",
656 ] 656 ]
657 } else if (use_ozone) { 657 } else if (use_ozone) {
658 sources += [ "widget/desktop_aura/desktop_window_tree_host_ozone.cc" ] 658 sources += [ "widget/desktop_aura/desktop_window_tree_host_ozone.cc" ]
659 } 659 }
660 if (is_linux) { 660 if (is_linux) {
661 sources += [ "style/platform_style_linux.cc" ] 661 sources += [
662 "style/platform_style_linux.cc",
663 "widget/desktop_aura/window_event_filter.cc",
664 "widget/desktop_aura/window_event_filter.h",
665 ]
662 } 666 }
663 } 667 }
664 } 668 }
665 669
666 if (is_mac) { 670 if (is_mac) {
667 deps += [ 671 deps += [
668 "//ui/accelerated_widget_mac", 672 "//ui/accelerated_widget_mac",
669 "//ui/events:dom_keycode_converter", 673 "//ui/events:dom_keycode_converter",
670 ] 674 ]
671 libs = [ 675 libs = [
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
1113 "//ui/base:test_support", 1117 "//ui/base:test_support",
1114 "//ui/compositor", 1118 "//ui/compositor",
1115 "//ui/events:test_support", 1119 "//ui/events:test_support",
1116 "//ui/gl:test_support", 1120 "//ui/gl:test_support",
1117 "//ui/resources", 1121 "//ui/resources",
1118 "//ui/resources:ui_test_pak", 1122 "//ui/resources:ui_test_pak",
1119 "//ui/strings", 1123 "//ui/strings",
1120 ] 1124 ]
1121 } 1125 }
1122 } 1126 }
OLDNEW
« no previous file with comments | « no previous file | ui/views/widget/desktop_aura/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698