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

Side by Side Diff: components/mus/ws/BUILD.gn

Issue 1465143004: Converts focusmanager from delegate to observer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup Created 5 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
« no previous file with comments | « components/mus/gles2/gpu_state.cc ('k') | components/mus/ws/connection_manager.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 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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//mojo/public/mojo_application.gni") 7 import("//mojo/public/mojo_application.gni")
8 8
9 source_set("lib") { 9 source_set("lib") {
10 sources = [ 10 sources = [
11 "access_policy.h", 11 "access_policy.h",
12 "access_policy_delegate.h", 12 "access_policy_delegate.h",
13 "client_connection.cc", 13 "client_connection.cc",
14 "client_connection.h", 14 "client_connection.h",
15 "connection_manager.cc", 15 "connection_manager.cc",
16 "connection_manager.h", 16 "connection_manager.h",
17 "connection_manager_delegate.cc", 17 "connection_manager_delegate.cc",
18 "connection_manager_delegate.h", 18 "connection_manager_delegate.h",
19 "default_access_policy.cc", 19 "default_access_policy.cc",
20 "default_access_policy.h", 20 "default_access_policy.h",
21 "display_manager.cc", 21 "display_manager.cc",
22 "display_manager.h", 22 "display_manager.h",
23 "display_manager_delegate.h", 23 "display_manager_delegate.h",
24 "display_manager_factory.h", 24 "display_manager_factory.h",
25 "event_dispatcher.cc", 25 "event_dispatcher.cc",
26 "event_dispatcher.h", 26 "event_dispatcher.h",
27 "event_dispatcher_delegate.h", 27 "event_dispatcher_delegate.h",
28 "focus_controller.cc", 28 "focus_controller.cc",
29 "focus_controller.h", 29 "focus_controller.h",
30 "focus_controller_delegate.h", 30 "focus_controller_observer.h",
31 "forwarding_window_manager.cc", 31 "forwarding_window_manager.cc",
32 "forwarding_window_manager.h", 32 "forwarding_window_manager.h",
33 "operation.cc", 33 "operation.cc",
34 "operation.h", 34 "operation.h",
35 "server_window.cc", 35 "server_window.cc",
36 "server_window.h", 36 "server_window.h",
37 "server_window_delegate.h", 37 "server_window_delegate.h",
38 "server_window_drawn_tracker.cc", 38 "server_window_drawn_tracker.cc",
39 "server_window_drawn_tracker.h", 39 "server_window_drawn_tracker.h",
40 "server_window_drawn_tracker_observer.h", 40 "server_window_drawn_tracker_observer.h",
(...skipping 16 matching lines...) Expand all
57 "window_tree_impl.cc", 57 "window_tree_impl.cc",
58 "window_tree_impl.h", 58 "window_tree_impl.h",
59 ] 59 ]
60 60
61 deps = [ 61 deps = [
62 "//base", 62 "//base",
63 "//cc", 63 "//cc",
64 "//cc/surfaces", 64 "//cc/surfaces",
65 "//cc/surfaces:surface_id", 65 "//cc/surfaces:surface_id",
66 "//components/mus/common", 66 "//components/mus/common",
67 "//components/mus/gles2:gles2", 67 "//components/mus/gles2",
68 "//components/mus/public/interfaces", 68 "//components/mus/public/interfaces",
69 "//components/mus/surfaces", 69 "//components/mus/surfaces",
70 "//mojo/application/public/cpp", 70 "//mojo/application/public/cpp",
71 "//mojo/common:common_base", 71 "//mojo/common:common_base",
72 "//mojo/converters/geometry", 72 "//mojo/converters/geometry",
73 "//mojo/converters/ime", 73 "//mojo/converters/ime",
74 "//mojo/converters/input_events", 74 "//mojo/converters/input_events",
75 "//mojo/converters/surfaces", 75 "//mojo/converters/surfaces",
76 "//mojo/public/cpp/bindings:callback", 76 "//mojo/public/cpp/bindings:callback",
77 "//mojo/services/tracing/public/cpp", 77 "//mojo/services/tracing/public/cpp",
78 "//ui/events", 78 "//ui/events",
79 "//ui/events/platform", 79 "//ui/events/platform",
80 "//ui/gfx", 80 "//ui/gfx",
81 "//ui/gfx/geometry", 81 "//ui/gfx/geometry",
82 "//ui/gl:gl", 82 "//ui/gl",
83 "//ui/mojo/geometry:interfaces", 83 "//ui/mojo/geometry:interfaces",
84 "//ui/platform_window",
84 "//ui/platform_window:platform_impls", 85 "//ui/platform_window:platform_impls",
85 "//ui/platform_window:platform_window",
86 ] 86 ]
87 } 87 }
88 88
89 source_set("test_support") { 89 source_set("test_support") {
90 testonly = true 90 testonly = true
91 91
92 sources = [ 92 sources = [
93 "test_change_tracker.cc", 93 "test_change_tracker.cc",
94 "test_change_tracker.h", 94 "test_change_tracker.h",
95 ] 95 ]
(...skipping 24 matching lines...) Expand all
120 "focus_controller_unittest.cc", 120 "focus_controller_unittest.cc",
121 "server_window_drawn_tracker_unittest.cc", 121 "server_window_drawn_tracker_unittest.cc",
122 "test_server_window_delegate.cc", 122 "test_server_window_delegate.cc",
123 "test_server_window_delegate.h", 123 "test_server_window_delegate.h",
124 "transient_windows_unittest.cc", 124 "transient_windows_unittest.cc",
125 "window_coordinate_conversions_unittest.cc", 125 "window_coordinate_conversions_unittest.cc",
126 "window_tree_unittest.cc", 126 "window_tree_unittest.cc",
127 ] 127 ]
128 128
129 deps = [ 129 deps = [
130 ":lib",
130 ":test_support", 131 ":test_support",
131 ":lib",
132 "//base", 132 "//base",
133 "//base/test:test_config", 133 "//base/test:test_config",
134 "//components/mus/common", 134 "//components/mus/common",
135 "//components/mus/surfaces",
136 "//components/mus/public/cpp", 135 "//components/mus/public/cpp",
137 "//components/mus/public/interfaces", 136 "//components/mus/public/interfaces",
137 "//components/mus/surfaces",
138 "//mojo/application/public/interfaces", 138 "//mojo/application/public/interfaces",
139 "//mojo/converters/geometry", 139 "//mojo/converters/geometry",
140 "//mojo/converters/input_events", 140 "//mojo/converters/input_events",
141 "//mojo/converters/transform", 141 "//mojo/converters/transform",
142 "//mojo/environment:chromium", 142 "//mojo/environment:chromium",
143 "//mojo/gles2", 143 "//mojo/gles2",
144 "//mojo/platform_handle", 144 "//mojo/platform_handle",
145 "//mojo/public/cpp/bindings:bindings", 145 "//mojo/public/cpp/bindings:bindings",
146 "//testing/gtest",
146 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", 147 "//third_party/mojo/src/mojo/edk/test:run_all_unittests",
147 "//ui/mojo/geometry:interfaces",
148 "//testing/gtest",
149 "//ui/events", 148 "//ui/events",
150 "//ui/gfx", 149 "//ui/gfx",
151 "//ui/gfx:test_support", 150 "//ui/gfx:test_support",
152 "//ui/gfx/geometry", 151 "//ui/gfx/geometry",
152 "//ui/mojo/geometry:interfaces",
153 ] 153 ]
154 154
155 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. 155 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links.
156 deps += [ "//third_party/mesa:osmesa" ] 156 deps += [ "//third_party/mesa:osmesa" ]
157 } 157 }
158 } 158 }
159 159
160 mojo_native_application("apptests") { 160 mojo_native_application("apptests") {
161 output_name = "mus_apptests" 161 output_name = "mus_apptests"
162 testonly = true 162 testonly = true
(...skipping 17 matching lines...) Expand all
180 "//ui/gfx:test_support", 180 "//ui/gfx:test_support",
181 "//ui/gfx/geometry", 181 "//ui/gfx/geometry",
182 "//ui/mojo/geometry:interfaces", 182 "//ui/mojo/geometry:interfaces",
183 "//ui/mojo/geometry:util", 183 "//ui/mojo/geometry:util",
184 ] 184 ]
185 185
186 data_deps = [ 186 data_deps = [
187 ":lib", 187 ":lib",
188 ] 188 ]
189 } 189 }
OLDNEW
« no previous file with comments | « components/mus/gles2/gpu_state.cc ('k') | components/mus/ws/connection_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698