| 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 30 matching lines...) Expand all Loading... |
| 41 "drag_cursor_updater.h", | 41 "drag_cursor_updater.h", |
| 42 "drag_source.h", | 42 "drag_source.h", |
| 43 "drag_target_connection.h", | 43 "drag_target_connection.h", |
| 44 "event_dispatcher.cc", | 44 "event_dispatcher.cc", |
| 45 "event_dispatcher.h", | 45 "event_dispatcher.h", |
| 46 "event_dispatcher_delegate.h", | 46 "event_dispatcher_delegate.h", |
| 47 "event_matcher.cc", | 47 "event_matcher.cc", |
| 48 "event_matcher.h", | 48 "event_matcher.h", |
| 49 "event_targeter.cc", | 49 "event_targeter.cc", |
| 50 "event_targeter.h", | 50 "event_targeter.h", |
| 51 "event_targeter_delegate.h", |
| 51 "focus_controller.cc", | 52 "focus_controller.cc", |
| 52 "focus_controller.h", | 53 "focus_controller.h", |
| 53 "focus_controller_delegate.h", | 54 "focus_controller_delegate.h", |
| 54 "focus_controller_observer.h", | 55 "focus_controller_observer.h", |
| 55 "frame_generator.cc", | 56 "frame_generator.cc", |
| 56 "frame_generator.h", | 57 "frame_generator.h", |
| 57 "gpu_client.cc", | 58 "gpu_client.cc", |
| 58 "gpu_client.h", | 59 "gpu_client.h", |
| 59 "gpu_host.cc", | 60 "gpu_host.cc", |
| 60 "gpu_host.h", | 61 "gpu_host.h", |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 | 299 |
| 299 service_manifest("unittests_manifest") { | 300 service_manifest("unittests_manifest") { |
| 300 name = "ui_service_unittests" | 301 name = "ui_service_unittests" |
| 301 source = "test_manifest.json" | 302 source = "test_manifest.json" |
| 302 } | 303 } |
| 303 | 304 |
| 304 catalog("tests_catalog") { | 305 catalog("tests_catalog") { |
| 305 testonly = true | 306 testonly = true |
| 306 embedded_services = [ ":unittests_manifest" ] | 307 embedded_services = [ ":unittests_manifest" ] |
| 307 } | 308 } |
| OLD | NEW |