OLD | NEW |
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("//services/shell/public/cpp/service.gni") | 7 import("//services/shell/public/cpp/service.gni") |
8 import("//services/shell/public/service_manifest.gni") | 8 import("//services/shell/public/service_manifest.gni") |
9 | 9 |
10 static_library("lib") { | 10 static_library("lib") { |
11 sources = [ | 11 sources = [ |
12 "accelerator.cc", | 12 "accelerator.cc", |
13 "accelerator.h", | 13 "accelerator.h", |
14 "access_policy.h", | 14 "access_policy.h", |
15 "access_policy_delegate.h", | 15 "access_policy_delegate.h", |
16 "accessibility_manager.cc", | 16 "accessibility_manager.cc", |
17 "accessibility_manager.h", | 17 "accessibility_manager.h", |
18 "animation_runner.cc", | 18 "animation_runner.cc", |
19 "animation_runner.h", | 19 "animation_runner.h", |
20 "animation_runner_observer.h", | 20 "animation_runner_observer.h", |
21 "default_access_policy.cc", | 21 "default_access_policy.cc", |
22 "default_access_policy.h", | 22 "default_access_policy.h", |
23 "display.cc", | 23 "display.cc", |
24 "display.h", | 24 "display.h", |
25 "display_binding.cc", | 25 "display_binding.cc", |
26 "display_binding.h", | 26 "display_binding.h", |
27 "display_manager.cc", | 27 "display_manager.cc", |
28 "display_manager.h", | 28 "display_manager.h", |
| 29 "drag_controller.cc", |
| 30 "drag_controller.h", |
| 31 "drag_source.h", |
| 32 "drag_target_connection.h", |
29 "event_dispatcher.cc", | 33 "event_dispatcher.cc", |
30 "event_dispatcher.h", | 34 "event_dispatcher.h", |
31 "event_dispatcher_delegate.h", | 35 "event_dispatcher_delegate.h", |
32 "event_matcher.cc", | 36 "event_matcher.cc", |
33 "event_matcher.h", | 37 "event_matcher.h", |
34 "focus_controller.cc", | 38 "focus_controller.cc", |
35 "focus_controller.h", | 39 "focus_controller.h", |
36 "focus_controller_delegate.h", | 40 "focus_controller_delegate.h", |
37 "focus_controller_observer.h", | 41 "focus_controller_observer.h", |
38 "frame_generator.cc", | 42 "frame_generator.cc", |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 if (!is_android) { | 194 if (!is_android) { |
191 deps += [ "//services/ui/public/cpp/tests:mus_public_unittests" ] | 195 deps += [ "//services/ui/public/cpp/tests:mus_public_unittests" ] |
192 } | 196 } |
193 } | 197 } |
194 | 198 |
195 test("mus_ws_unittests") { | 199 test("mus_ws_unittests") { |
196 sources = [ | 200 sources = [ |
197 "animation_runner_unittest.cc", | 201 "animation_runner_unittest.cc", |
198 "cursor_unittest.cc", | 202 "cursor_unittest.cc", |
199 "display_unittest.cc", | 203 "display_unittest.cc", |
| 204 "drag_controller_unittest.cc", |
200 "event_dispatcher_unittest.cc", | 205 "event_dispatcher_unittest.cc", |
201 "event_matcher_unittest.cc", | 206 "event_matcher_unittest.cc", |
202 "focus_controller_unittest.cc", | 207 "focus_controller_unittest.cc", |
203 "frame_generator_unittest.cc", | 208 "frame_generator_unittest.cc", |
204 "scheduled_animation_group_unittest.cc", | 209 "scheduled_animation_group_unittest.cc", |
205 "server_window_drawn_tracker_unittest.cc", | 210 "server_window_drawn_tracker_unittest.cc", |
206 "server_window_surface_manager_test_api.cc", | 211 "server_window_surface_manager_test_api.cc", |
207 "server_window_surface_manager_test_api.h", | 212 "server_window_surface_manager_test_api.h", |
208 "test_server_window_delegate.cc", | 213 "test_server_window_delegate.cc", |
209 "test_server_window_delegate.h", | 214 "test_server_window_delegate.h", |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 | 260 |
256 data_deps = [ | 261 data_deps = [ |
257 ":mus_ws_unittests_app_manifest", | 262 ":mus_ws_unittests_app_manifest", |
258 ] | 263 ] |
259 } | 264 } |
260 | 265 |
261 service_manifest("mus_ws_unittests_app_manifest") { | 266 service_manifest("mus_ws_unittests_app_manifest") { |
262 name = "mus_ws_unittests_app" | 267 name = "mus_ws_unittests_app" |
263 source = "mus_ws_unittests_app_manifest.json" | 268 source = "mus_ws_unittests_app_manifest.json" |
264 } | 269 } |
OLD | NEW |