| 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/catalog/public/tools/catalog.gni") | 7 import("//services/catalog/public/tools/catalog.gni") |
| 8 import("//services/service_manager/public/cpp/service.gni") | 8 import("//services/service_manager/public/cpp/service.gni") |
| 9 import("//services/service_manager/public/service_manifest.gni") | 9 import("//services/service_manager/public/service_manifest.gni") |
| 10 import("//services/service_manager/public/tools/test/service_test.gni") | 10 import("//services/service_manager/public/tools/test/service_test.gni") |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 | 218 |
| 219 service_test("mus_ws_unittests") { | 219 service_test("mus_ws_unittests") { |
| 220 sources = [ | 220 sources = [ |
| 221 "cursor_location_manager_unittest.cc", | 221 "cursor_location_manager_unittest.cc", |
| 222 "cursor_unittest.cc", | 222 "cursor_unittest.cc", |
| 223 "display_unittest.cc", | 223 "display_unittest.cc", |
| 224 "drag_controller_unittest.cc", | 224 "drag_controller_unittest.cc", |
| 225 "event_dispatcher_unittest.cc", | 225 "event_dispatcher_unittest.cc", |
| 226 "event_matcher_unittest.cc", | 226 "event_matcher_unittest.cc", |
| 227 "focus_controller_unittest.cc", | 227 "focus_controller_unittest.cc", |
| 228 "frame_generator_unittest.cc", |
| 228 "server_window_drawn_tracker_unittest.cc", | 229 "server_window_drawn_tracker_unittest.cc", |
| 229 "test_server_window_delegate.cc", | 230 "test_server_window_delegate.cc", |
| 230 "test_server_window_delegate.h", | 231 "test_server_window_delegate.h", |
| 231 "test_utils.cc", | 232 "test_utils.cc", |
| 232 "test_utils.h", | 233 "test_utils.h", |
| 233 "transient_windows_unittest.cc", | 234 "transient_windows_unittest.cc", |
| 234 "user_activity_monitor_unittest.cc", | 235 "user_activity_monitor_unittest.cc", |
| 235 "user_display_manager_unittest.cc", | 236 "user_display_manager_unittest.cc", |
| 236 "window_coordinate_conversions_unittest.cc", | 237 "window_coordinate_conversions_unittest.cc", |
| 237 "window_finder_unittest.cc", | 238 "window_finder_unittest.cc", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 248 | 249 |
| 249 catalog = ":mus_ws_unittests_catalog" | 250 catalog = ":mus_ws_unittests_catalog" |
| 250 | 251 |
| 251 deps = [ | 252 deps = [ |
| 252 ":lib", | 253 ":lib", |
| 253 ":test_support", | 254 ":test_support", |
| 254 "//base", | 255 "//base", |
| 255 "//base/test:test_config", | 256 "//base/test:test_config", |
| 256 "//base/test:test_support", | 257 "//base/test:test_support", |
| 257 "//cc:cc", | 258 "//cc:cc", |
| 259 "//cc:test_support", |
| 258 "//gpu/ipc/client", | 260 "//gpu/ipc/client", |
| 259 "//mojo/public/cpp/bindings:bindings", | 261 "//mojo/public/cpp/bindings:bindings", |
| 260 "//services/service_manager/public/cpp:service_test_support", | 262 "//services/service_manager/public/cpp:service_test_support", |
| 261 "//services/service_manager/public/cpp:sources", | 263 "//services/service_manager/public/cpp:sources", |
| 262 "//services/service_manager/public/interfaces", | 264 "//services/service_manager/public/interfaces", |
| 263 "//services/ui/common:mus_common", | 265 "//services/ui/common:mus_common", |
| 264 "//services/ui/common:task_runner_test_base", | 266 "//services/ui/common:task_runner_test_base", |
| 265 "//services/ui/public/cpp", | 267 "//services/ui/public/cpp", |
| 266 "//services/ui/public/interfaces", | 268 "//services/ui/public/interfaces", |
| 267 "//testing/gtest", | 269 "//testing/gtest", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 280 service_manifest("mus_ws_unittests_app_manifest") { | 282 service_manifest("mus_ws_unittests_app_manifest") { |
| 281 name = "mus_ws_unittests_app" | 283 name = "mus_ws_unittests_app" |
| 282 source = "mus_ws_unittests_app_manifest.json" | 284 source = "mus_ws_unittests_app_manifest.json" |
| 283 } | 285 } |
| 284 | 286 |
| 285 catalog("mus_ws_unittests_catalog") { | 287 catalog("mus_ws_unittests_catalog") { |
| 286 embedded_services = [ ":mus_ws_unittests_app_manifest" ] | 288 embedded_services = [ ":mus_ws_unittests_app_manifest" ] |
| 287 | 289 |
| 288 standalone_services = [ "//services/ui:manifest" ] | 290 standalone_services = [ "//services/ui:manifest" ] |
| 289 } | 291 } |
| OLD | NEW |