| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "modal_window_controller.cc", | 55 "modal_window_controller.cc", |
| 56 "modal_window_controller.h", | 56 "modal_window_controller.h", |
| 57 "operation.cc", | 57 "operation.cc", |
| 58 "operation.h", | 58 "operation.h", |
| 59 "platform_display.cc", | 59 "platform_display.cc", |
| 60 "platform_display.h", | 60 "platform_display.h", |
| 61 "platform_display_default.cc", | 61 "platform_display_default.cc", |
| 62 "platform_display_default.h", | 62 "platform_display_default.h", |
| 63 "platform_display_delegate.h", | 63 "platform_display_delegate.h", |
| 64 "platform_display_factory.h", | 64 "platform_display_factory.h", |
| 65 "platform_display_init_params.cc", | |
| 66 "platform_display_init_params.h", | |
| 67 "server_window.cc", | 65 "server_window.cc", |
| 68 "server_window.h", | 66 "server_window.h", |
| 69 "server_window_compositor_frame_sink_manager.cc", | 67 "server_window_compositor_frame_sink_manager.cc", |
| 70 "server_window_compositor_frame_sink_manager.h", | 68 "server_window_compositor_frame_sink_manager.h", |
| 71 "server_window_delegate.h", | 69 "server_window_delegate.h", |
| 72 "server_window_drawn_tracker.cc", | 70 "server_window_drawn_tracker.cc", |
| 73 "server_window_drawn_tracker.h", | 71 "server_window_drawn_tracker.h", |
| 74 "server_window_drawn_tracker_observer.h", | 72 "server_window_drawn_tracker_observer.h", |
| 75 "server_window_observer.h", | 73 "server_window_observer.h", |
| 76 "server_window_tracker.h", | 74 "server_window_tracker.h", |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 service_manifest("mus_ws_unittests_app_manifest") { | 280 service_manifest("mus_ws_unittests_app_manifest") { |
| 283 name = "mus_ws_unittests_app" | 281 name = "mus_ws_unittests_app" |
| 284 source = "mus_ws_unittests_app_manifest.json" | 282 source = "mus_ws_unittests_app_manifest.json" |
| 285 } | 283 } |
| 286 | 284 |
| 287 catalog("mus_ws_unittests_catalog") { | 285 catalog("mus_ws_unittests_catalog") { |
| 288 embedded_services = [ ":mus_ws_unittests_app_manifest" ] | 286 embedded_services = [ ":mus_ws_unittests_app_manifest" ] |
| 289 | 287 |
| 290 standalone_services = [ "//services/ui:manifest" ] | 288 standalone_services = [ "//services/ui:manifest" ] |
| 291 } | 289 } |
| OLD | NEW |