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 "current_drag_operation.cc", | |
22 "current_drag_operation.h", | |
sky
2016/09/06 21:11:26
current_drag_operation_source.h= and drag_target_c
| |
21 "default_access_policy.cc", | 23 "default_access_policy.cc", |
22 "default_access_policy.h", | 24 "default_access_policy.h", |
23 "display.cc", | 25 "display.cc", |
24 "display.h", | 26 "display.h", |
25 "display_binding.cc", | 27 "display_binding.cc", |
26 "display_binding.h", | 28 "display_binding.h", |
27 "display_manager.cc", | 29 "display_manager.cc", |
28 "display_manager.h", | 30 "display_manager.h", |
29 "event_dispatcher.cc", | 31 "event_dispatcher.cc", |
30 "event_dispatcher.h", | 32 "event_dispatcher.h", |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
188 ":mus_ws_unittests", | 190 ":mus_ws_unittests", |
189 ] | 191 ] |
190 if (!is_android) { | 192 if (!is_android) { |
191 deps += [ "//services/ui/public/cpp/tests:mus_public_unittests" ] | 193 deps += [ "//services/ui/public/cpp/tests:mus_public_unittests" ] |
192 } | 194 } |
193 } | 195 } |
194 | 196 |
195 test("mus_ws_unittests") { | 197 test("mus_ws_unittests") { |
196 sources = [ | 198 sources = [ |
197 "animation_runner_unittest.cc", | 199 "animation_runner_unittest.cc", |
200 "current_drag_operation_unittest.cc", | |
198 "cursor_unittest.cc", | 201 "cursor_unittest.cc", |
199 "display_unittest.cc", | 202 "display_unittest.cc", |
200 "event_dispatcher_unittest.cc", | 203 "event_dispatcher_unittest.cc", |
201 "event_matcher_unittest.cc", | 204 "event_matcher_unittest.cc", |
202 "focus_controller_unittest.cc", | 205 "focus_controller_unittest.cc", |
203 "frame_generator_unittest.cc", | 206 "frame_generator_unittest.cc", |
204 "scheduled_animation_group_unittest.cc", | 207 "scheduled_animation_group_unittest.cc", |
205 "server_window_drawn_tracker_unittest.cc", | 208 "server_window_drawn_tracker_unittest.cc", |
206 "server_window_surface_manager_test_api.cc", | 209 "server_window_surface_manager_test_api.cc", |
207 "server_window_surface_manager_test_api.h", | 210 "server_window_surface_manager_test_api.h", |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
255 | 258 |
256 data_deps = [ | 259 data_deps = [ |
257 ":mus_ws_unittests_app_manifest", | 260 ":mus_ws_unittests_app_manifest", |
258 ] | 261 ] |
259 } | 262 } |
260 | 263 |
261 service_manifest("mus_ws_unittests_app_manifest") { | 264 service_manifest("mus_ws_unittests_app_manifest") { |
262 name = "mus_ws_unittests_app" | 265 name = "mus_ws_unittests_app" |
263 source = "mus_ws_unittests_app_manifest.json" | 266 source = "mus_ws_unittests_app_manifest.json" |
264 } | 267 } |
OLD | NEW |