| 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/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
| 9 | 9 |
| 10 static_library("lib") { | 10 static_library("lib") { |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "//gpu/command_buffer/client", | 115 "//gpu/command_buffer/client", |
| 116 "//gpu/ipc/client", | 116 "//gpu/ipc/client", |
| 117 "//gpu/ipc/common", | 117 "//gpu/ipc/common", |
| 118 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. | 118 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. |
| 119 "//services/ui/gpu/interfaces", | 119 "//services/ui/gpu/interfaces", |
| 120 ] | 120 ] |
| 121 | 121 |
| 122 public_deps = [ | 122 public_deps = [ |
| 123 "//base", | 123 "//base", |
| 124 "//cc", | 124 "//cc", |
| 125 "//cc/ipc:interfaces", | 125 "//cc/ipc:internal_interfaces", |
| 126 "//cc/surfaces", | 126 "//cc/surfaces", |
| 127 "//cc/surfaces:surface_id", | 127 "//cc/surfaces:surface_id", |
| 128 "//mojo/common:common_base", | 128 "//mojo/common:common_base", |
| 129 "//mojo/public/cpp/bindings", | 129 "//mojo/public/cpp/bindings", |
| 130 "//services/service_manager/public/cpp", | 130 "//services/service_manager/public/cpp", |
| 131 "//services/service_manager/public/interfaces", | 131 "//services/service_manager/public/interfaces", |
| 132 "//services/tracing/public/cpp", | 132 "//services/tracing/public/cpp", |
| 133 "//services/ui/common:mus_common", | 133 "//services/ui/common:mus_common", |
| 134 "//services/ui/display", | 134 "//services/ui/display", |
| 135 "//services/ui/public/interfaces", | 135 "//services/ui/public/interfaces", |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 | 260 |
| 261 data_deps = [ | 261 data_deps = [ |
| 262 ":mus_ws_unittests_app_manifest", | 262 ":mus_ws_unittests_app_manifest", |
| 263 ] | 263 ] |
| 264 } | 264 } |
| 265 | 265 |
| 266 service_manifest("mus_ws_unittests_app_manifest") { | 266 service_manifest("mus_ws_unittests_app_manifest") { |
| 267 name = "mus_ws_unittests_app" | 267 name = "mus_ws_unittests_app" |
| 268 source = "mus_ws_unittests_app_manifest.json" | 268 source = "mus_ws_unittests_app_manifest.json" |
| 269 } | 269 } |
| OLD | NEW |