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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 "window_server_delegate.cc", | 101 "window_server_delegate.cc", |
102 "window_server_delegate.h", | 102 "window_server_delegate.h", |
103 "window_tree.cc", | 103 "window_tree.cc", |
104 "window_tree.h", | 104 "window_tree.h", |
105 "window_tree_binding.cc", | 105 "window_tree_binding.cc", |
106 "window_tree_binding.h", | 106 "window_tree_binding.h", |
107 "window_tree_factory.cc", | 107 "window_tree_factory.cc", |
108 "window_tree_factory.h", | 108 "window_tree_factory.h", |
109 "window_tree_host_factory.cc", | 109 "window_tree_host_factory.cc", |
110 "window_tree_host_factory.h", | 110 "window_tree_host_factory.h", |
| 111 "window_tree_host_factory_registrar.cc", |
| 112 "window_tree_host_factory_registrar.h", |
111 ] | 113 ] |
112 | 114 |
113 deps = [ | 115 deps = [ |
114 "//gpu/command_buffer/client", | 116 "//gpu/command_buffer/client", |
115 "//gpu/command_buffer/client:gles2_interface", | 117 "//gpu/command_buffer/client:gles2_interface", |
116 "//gpu/ipc/client", | 118 "//gpu/ipc/client", |
117 "//gpu/ipc/common", | 119 "//gpu/ipc/common", |
118 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. | 120 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. |
119 "//services/ui/gpu/interfaces", | 121 "//services/ui/gpu/interfaces", |
120 ] | 122 ] |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |