| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "window_server_delegate.cc", | 97 "window_server_delegate.cc", |
| 98 "window_server_delegate.h", | 98 "window_server_delegate.h", |
| 99 "window_tree.cc", | 99 "window_tree.cc", |
| 100 "window_tree.h", | 100 "window_tree.h", |
| 101 "window_tree_binding.cc", | 101 "window_tree_binding.cc", |
| 102 "window_tree_binding.h", | 102 "window_tree_binding.h", |
| 103 "window_tree_factory.cc", | 103 "window_tree_factory.cc", |
| 104 "window_tree_factory.h", | 104 "window_tree_factory.h", |
| 105 "window_tree_host_factory.cc", | 105 "window_tree_host_factory.cc", |
| 106 "window_tree_host_factory.h", | 106 "window_tree_host_factory.h", |
| 107 "window_tree_host_factory_registrar.cc", |
| 108 "window_tree_host_factory_registrar.h", |
| 107 ] | 109 ] |
| 108 | 110 |
| 109 deps = [ | 111 deps = [ |
| 110 "//gpu/command_buffer/client", | 112 "//gpu/command_buffer/client", |
| 111 "//gpu/command_buffer/client:gles2_interface", | 113 "//gpu/command_buffer/client:gles2_interface", |
| 112 "//gpu/ipc/client", | 114 "//gpu/ipc/client", |
| 113 "//gpu/ipc/common", | 115 "//gpu/ipc/common", |
| 114 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. | 116 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. |
| 115 "//services/ui/gpu/interfaces", | 117 "//services/ui/gpu/interfaces", |
| 116 ] | 118 ] |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 service_manifest("mus_ws_unittests_app_manifest") { | 267 service_manifest("mus_ws_unittests_app_manifest") { |
| 266 name = "mus_ws_unittests_app" | 268 name = "mus_ws_unittests_app" |
| 267 source = "mus_ws_unittests_app_manifest.json" | 269 source = "mus_ws_unittests_app_manifest.json" |
| 268 } | 270 } |
| 269 | 271 |
| 270 catalog("mus_ws_unittests_catalog") { | 272 catalog("mus_ws_unittests_catalog") { |
| 271 embedded_services = [ ":mus_ws_unittests_app_manifest" ] | 273 embedded_services = [ ":mus_ws_unittests_app_manifest" ] |
| 272 | 274 |
| 273 standalone_services = [ "//services/ui:manifest" ] | 275 standalone_services = [ "//services/ui:manifest" ] |
| 274 } | 276 } |
| OLD | NEW |