| 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") { |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 } | 179 } |
| 180 } | 180 } |
| 181 | 181 |
| 182 test("mus_ws_unittests") { | 182 test("mus_ws_unittests") { |
| 183 sources = [ | 183 sources = [ |
| 184 "cursor_unittest.cc", | 184 "cursor_unittest.cc", |
| 185 "display_unittest.cc", | 185 "display_unittest.cc", |
| 186 "event_dispatcher_unittest.cc", | 186 "event_dispatcher_unittest.cc", |
| 187 "event_matcher_unittest.cc", | 187 "event_matcher_unittest.cc", |
| 188 "focus_controller_unittest.cc", | 188 "focus_controller_unittest.cc", |
| 189 "platform_display_unittest.cc", |
| 189 "server_window_drawn_tracker_unittest.cc", | 190 "server_window_drawn_tracker_unittest.cc", |
| 190 "server_window_surface_manager_test_api.cc", | 191 "server_window_surface_manager_test_api.cc", |
| 191 "server_window_surface_manager_test_api.h", | 192 "server_window_surface_manager_test_api.h", |
| 192 "test_server_window_delegate.cc", | 193 "test_server_window_delegate.cc", |
| 193 "test_server_window_delegate.h", | 194 "test_server_window_delegate.h", |
| 194 "test_utils.cc", | 195 "test_utils.cc", |
| 195 "test_utils.h", | 196 "test_utils.h", |
| 196 "transient_windows_unittest.cc", | 197 "transient_windows_unittest.cc", |
| 197 "user_display_manager_unittest.cc", | 198 "user_display_manager_unittest.cc", |
| 198 "window_coordinate_conversions_unittest.cc", | 199 "window_coordinate_conversions_unittest.cc", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 | 237 |
| 237 data_deps = [ | 238 data_deps = [ |
| 238 ":mus_ws_unittests_app_manifest", | 239 ":mus_ws_unittests_app_manifest", |
| 239 ] | 240 ] |
| 240 } | 241 } |
| 241 | 242 |
| 242 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 243 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 243 application_name = "mus_ws_unittests_app" | 244 application_name = "mus_ws_unittests_app" |
| 244 source = "mus_ws_unittests_app_manifest.json" | 245 source = "mus_ws_unittests_app_manifest.json" |
| 245 } | 246 } |
| OLD | NEW |