| 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 15 matching lines...) Expand all Loading... |
| 26 "cursor_location_manager.cc", | 26 "cursor_location_manager.cc", |
| 27 "cursor_location_manager.h", | 27 "cursor_location_manager.h", |
| 28 "cursor_state.cc", | 28 "cursor_state.cc", |
| 29 "cursor_state.h", | 29 "cursor_state.h", |
| 30 "default_access_policy.cc", | 30 "default_access_policy.cc", |
| 31 "default_access_policy.h", | 31 "default_access_policy.h", |
| 32 "display.cc", | 32 "display.cc", |
| 33 "display.h", | 33 "display.h", |
| 34 "display_binding.cc", | 34 "display_binding.cc", |
| 35 "display_binding.h", | 35 "display_binding.h", |
| 36 "display_creation_config.h", |
| 36 "display_manager.cc", | 37 "display_manager.cc", |
| 37 "display_manager.h", | 38 "display_manager.h", |
| 38 "drag_controller.cc", | 39 "drag_controller.cc", |
| 39 "drag_controller.h", | 40 "drag_controller.h", |
| 40 "drag_cursor_updater.h", | 41 "drag_cursor_updater.h", |
| 41 "drag_source.h", | 42 "drag_source.h", |
| 42 "drag_target_connection.h", | 43 "drag_target_connection.h", |
| 43 "event_dispatcher.cc", | 44 "event_dispatcher.cc", |
| 44 "event_dispatcher.h", | 45 "event_dispatcher.h", |
| 45 "event_dispatcher_delegate.h", | 46 "event_dispatcher_delegate.h", |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 service_manifest("ui_service_unittests_app_manifest") { | 304 service_manifest("ui_service_unittests_app_manifest") { |
| 304 name = "ui_service_unittests_app" | 305 name = "ui_service_unittests_app" |
| 305 source = "ui_service_unittests_app_manifest.json" | 306 source = "ui_service_unittests_app_manifest.json" |
| 306 } | 307 } |
| 307 | 308 |
| 308 catalog("ui_service_unittests_catalog") { | 309 catalog("ui_service_unittests_catalog") { |
| 309 embedded_services = [ ":ui_service_unittests_app_manifest" ] | 310 embedded_services = [ ":ui_service_unittests_app_manifest" ] |
| 310 | 311 |
| 311 standalone_services = [ "//services/ui:manifest" ] | 312 standalone_services = [ "//services/ui:manifest" ] |
| 312 } | 313 } |
| OLD | NEW |