| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 "//gpu/command_buffer/client:gles2_interface", | 109 "//gpu/command_buffer/client:gles2_interface", |
| 110 "//gpu/ipc/client", | 110 "//gpu/ipc/client", |
| 111 "//gpu/ipc/common", | 111 "//gpu/ipc/common", |
| 112 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. | 112 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. |
| 113 "//services/ui/gpu/interfaces", | 113 "//services/ui/gpu/interfaces", |
| 114 ] | 114 ] |
| 115 | 115 |
| 116 public_deps = [ | 116 public_deps = [ |
| 117 "//base", | 117 "//base", |
| 118 "//cc", | 118 "//cc", |
| 119 "//cc/ipc:internal_interfaces", | 119 "//cc/ipc:interfaces", |
| 120 "//cc/surfaces", | 120 "//cc/surfaces", |
| 121 "//cc/surfaces:surface_id", | 121 "//cc/surfaces:surface_id", |
| 122 "//mojo/common:common_base", | 122 "//mojo/common:common_base", |
| 123 "//mojo/public/cpp/bindings", | 123 "//mojo/public/cpp/bindings", |
| 124 "//services/service_manager/public/cpp", | 124 "//services/service_manager/public/cpp", |
| 125 "//services/service_manager/public/interfaces", | 125 "//services/service_manager/public/interfaces", |
| 126 "//services/tracing/public/cpp", | 126 "//services/tracing/public/cpp", |
| 127 "//services/ui/common:mus_common", | 127 "//services/ui/common:mus_common", |
| 128 "//services/ui/common:server_gpu", | 128 "//services/ui/common:server_gpu", |
| 129 "//services/ui/display", | 129 "//services/ui/display", |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 service_manifest("mus_ws_unittests_app_manifest") { | 263 service_manifest("mus_ws_unittests_app_manifest") { |
| 264 name = "mus_ws_unittests_app" | 264 name = "mus_ws_unittests_app" |
| 265 source = "mus_ws_unittests_app_manifest.json" | 265 source = "mus_ws_unittests_app_manifest.json" |
| 266 } | 266 } |
| 267 | 267 |
| 268 catalog("mus_ws_unittests_catalog") { | 268 catalog("mus_ws_unittests_catalog") { |
| 269 embedded_services = [ ":mus_ws_unittests_app_manifest" ] | 269 embedded_services = [ ":mus_ws_unittests_app_manifest" ] |
| 270 | 270 |
| 271 standalone_services = [ "//services/ui:manifest" ] | 271 standalone_services = [ "//services/ui:manifest" ] |
| 272 } | 272 } |
| OLD | NEW |