| 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("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
| 9 | 9 |
| 10 source_set("lib") { | 10 source_set("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 "default_access_policy.cc", | 16 "default_access_policy.cc", |
| 17 "default_access_policy.h", | 17 "default_access_policy.h", |
| 18 "display.cc", | 18 "display.cc", |
| 19 "display.h", | 19 "display.h", |
| 20 "display_binding.cc", | 20 "display_binding.cc", |
| 21 "display_binding.h", | 21 "display_binding.h", |
| 22 "display_manager.cc", | 22 "display_manager.cc", |
| 23 "display_manager.h", | 23 "display_manager.h", |
| 24 "display_manager_delegate.h", | 24 "display_manager_delegate.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 "event_matcher.cc", |
| 29 "event_matcher.h", |
| 28 "focus_controller.cc", | 30 "focus_controller.cc", |
| 29 "focus_controller.h", | 31 "focus_controller.h", |
| 30 "focus_controller_delegate.h", | 32 "focus_controller_delegate.h", |
| 31 "focus_controller_observer.h", | 33 "focus_controller_observer.h", |
| 32 "operation.cc", | 34 "operation.cc", |
| 33 "operation.h", | 35 "operation.h", |
| 34 "platform_display.cc", | 36 "platform_display.cc", |
| 35 "platform_display.h", | 37 "platform_display.h", |
| 36 "platform_display_delegate.h", | 38 "platform_display_delegate.h", |
| 37 "platform_display_factory.h", | 39 "platform_display_factory.h", |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 if (!is_android) { | 159 if (!is_android) { |
| 158 deps += | 160 deps += |
| 159 [ "//components/mus/public/cpp/tests:mojo_view_manager_lib_unittests" ] | 161 [ "//components/mus/public/cpp/tests:mojo_view_manager_lib_unittests" ] |
| 160 } | 162 } |
| 161 } | 163 } |
| 162 | 164 |
| 163 test("mus_ws_unittests") { | 165 test("mus_ws_unittests") { |
| 164 sources = [ | 166 sources = [ |
| 165 "display_unittest.cc", | 167 "display_unittest.cc", |
| 166 "event_dispatcher_unittest.cc", | 168 "event_dispatcher_unittest.cc", |
| 169 "event_matcher_unittest.cc", |
| 167 "focus_controller_unittest.cc", | 170 "focus_controller_unittest.cc", |
| 168 "server_window_drawn_tracker_unittest.cc", | 171 "server_window_drawn_tracker_unittest.cc", |
| 169 "server_window_surface_manager_test_api.cc", | 172 "server_window_surface_manager_test_api.cc", |
| 170 "server_window_surface_manager_test_api.h", | 173 "server_window_surface_manager_test_api.h", |
| 171 "test_server_window_delegate.cc", | 174 "test_server_window_delegate.cc", |
| 172 "test_server_window_delegate.h", | 175 "test_server_window_delegate.h", |
| 173 "test_utils.cc", | 176 "test_utils.cc", |
| 174 "test_utils.h", | 177 "test_utils.h", |
| 175 "transient_windows_unittest.cc", | 178 "transient_windows_unittest.cc", |
| 176 "user_display_manager_unittest.cc", | 179 "user_display_manager_unittest.cc", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 | 228 |
| 226 data_deps = [ | 229 data_deps = [ |
| 227 ":mus_ws_unittests_app_manifest", | 230 ":mus_ws_unittests_app_manifest", |
| 228 ] | 231 ] |
| 229 } | 232 } |
| 230 | 233 |
| 231 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 234 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 232 application_name = "mus_ws_unittests_app" | 235 application_name = "mus_ws_unittests_app" |
| 233 source = "mus_ws_unittests_app_manifest.json" | 236 source = "mus_ws_unittests_app_manifest.json" |
| 234 } | 237 } |
| OLD | NEW |