| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 } | 188 } |
| 189 | 189 |
| 190 test("mus_ws_unittests") { | 190 test("mus_ws_unittests") { |
| 191 sources = [ | 191 sources = [ |
| 192 "animation_runner_unittest.cc", | 192 "animation_runner_unittest.cc", |
| 193 "cursor_unittest.cc", | 193 "cursor_unittest.cc", |
| 194 "display_unittest.cc", | 194 "display_unittest.cc", |
| 195 "event_dispatcher_unittest.cc", | 195 "event_dispatcher_unittest.cc", |
| 196 "event_matcher_unittest.cc", | 196 "event_matcher_unittest.cc", |
| 197 "focus_controller_unittest.cc", | 197 "focus_controller_unittest.cc", |
| 198 "frame_generator_unittest.cc", |
| 198 "scheduled_animation_group_unittest.cc", | 199 "scheduled_animation_group_unittest.cc", |
| 199 "server_window_drawn_tracker_unittest.cc", | 200 "server_window_drawn_tracker_unittest.cc", |
| 200 "server_window_surface_manager_test_api.cc", | 201 "server_window_surface_manager_test_api.cc", |
| 201 "server_window_surface_manager_test_api.h", | 202 "server_window_surface_manager_test_api.h", |
| 202 "test_server_window_delegate.cc", | 203 "test_server_window_delegate.cc", |
| 203 "test_server_window_delegate.h", | 204 "test_server_window_delegate.h", |
| 204 "test_utils.cc", | 205 "test_utils.cc", |
| 205 "test_utils.h", | 206 "test_utils.h", |
| 206 "transient_windows_unittest.cc", | 207 "transient_windows_unittest.cc", |
| 207 "user_activity_monitor_unittest.cc", | 208 "user_activity_monitor_unittest.cc", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 | 248 |
| 248 data_deps = [ | 249 data_deps = [ |
| 249 ":mus_ws_unittests_app_manifest", | 250 ":mus_ws_unittests_app_manifest", |
| 250 ] | 251 ] |
| 251 } | 252 } |
| 252 | 253 |
| 253 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 254 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 254 application_name = "mus_ws_unittests_app" | 255 application_name = "mus_ws_unittests_app" |
| 255 source = "mus_ws_unittests_app_manifest.json" | 256 source = "mus_ws_unittests_app_manifest.json" |
| 256 } | 257 } |
| OLD | NEW |