| 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_tester.cc", |
| 29 "event_tester.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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 if (!is_android) { | 145 if (!is_android) { |
| 144 deps += | 146 deps += |
| 145 [ "//components/mus/public/cpp/tests:mojo_view_manager_lib_unittests" ] | 147 [ "//components/mus/public/cpp/tests:mojo_view_manager_lib_unittests" ] |
| 146 } | 148 } |
| 147 } | 149 } |
| 148 | 150 |
| 149 test("mus_ws_unittests") { | 151 test("mus_ws_unittests") { |
| 150 sources = [ | 152 sources = [ |
| 151 "display_unittest.cc", | 153 "display_unittest.cc", |
| 152 "event_dispatcher_unittest.cc", | 154 "event_dispatcher_unittest.cc", |
| 155 "event_tester_unittest.cc", |
| 153 "focus_controller_unittest.cc", | 156 "focus_controller_unittest.cc", |
| 154 "server_window_drawn_tracker_unittest.cc", | 157 "server_window_drawn_tracker_unittest.cc", |
| 155 "server_window_surface_manager_test_api.cc", | 158 "server_window_surface_manager_test_api.cc", |
| 156 "server_window_surface_manager_test_api.h", | 159 "server_window_surface_manager_test_api.h", |
| 157 "test_server_window_delegate.cc", | 160 "test_server_window_delegate.cc", |
| 158 "test_server_window_delegate.h", | 161 "test_server_window_delegate.h", |
| 159 "test_utils.cc", | 162 "test_utils.cc", |
| 160 "test_utils.h", | 163 "test_utils.h", |
| 161 "transient_windows_unittest.cc", | 164 "transient_windows_unittest.cc", |
| 162 "user_display_manager_unittest.cc", | 165 "user_display_manager_unittest.cc", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 | 214 |
| 212 data_deps = [ | 215 data_deps = [ |
| 213 ":mus_ws_unittests_app_manifest", | 216 ":mus_ws_unittests_app_manifest", |
| 214 ] | 217 ] |
| 215 } | 218 } |
| 216 | 219 |
| 217 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 220 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 218 application_name = "mus_ws_unittests_app" | 221 application_name = "mus_ws_unittests_app" |
| 219 source = "mus_ws_unittests_app_manifest.json" | 222 source = "mus_ws_unittests_app_manifest.json" |
| 220 } | 223 } |
| OLD | NEW |