| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "//cc", | 123 "//cc", |
| 124 "//cc/ipc:internal_interfaces", | 124 "//cc/ipc:internal_interfaces", |
| 125 "//cc/surfaces", | 125 "//cc/surfaces", |
| 126 "//cc/surfaces:surface_id", | 126 "//cc/surfaces:surface_id", |
| 127 "//mojo/common:common_base", | 127 "//mojo/common:common_base", |
| 128 "//mojo/public/cpp/bindings", | 128 "//mojo/public/cpp/bindings", |
| 129 "//services/service_manager/public/cpp", | 129 "//services/service_manager/public/cpp", |
| 130 "//services/service_manager/public/interfaces", | 130 "//services/service_manager/public/interfaces", |
| 131 "//services/tracing/public/cpp", | 131 "//services/tracing/public/cpp", |
| 132 "//services/ui/common:mus_common", | 132 "//services/ui/common:mus_common", |
| 133 "//services/ui/common:server_gpu", |
| 133 "//services/ui/display", | 134 "//services/ui/display", |
| 134 "//services/ui/public/interfaces", | 135 "//services/ui/public/interfaces", |
| 135 "//ui/base", | 136 "//ui/base", |
| 136 "//ui/display", | 137 "//ui/display", |
| 137 "//ui/events", | 138 "//ui/events", |
| 138 "//ui/events/devices", | 139 "//ui/events/devices", |
| 139 "//ui/events/platform", | 140 "//ui/events/platform", |
| 140 "//ui/gfx", | 141 "//ui/gfx", |
| 141 "//ui/gfx/geometry", | 142 "//ui/gfx/geometry", |
| 142 "//ui/gfx/geometry/mojo", | 143 "//ui/gfx/geometry/mojo", |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 | 259 |
| 259 data_deps = [ | 260 data_deps = [ |
| 260 ":mus_ws_unittests_app_manifest", | 261 ":mus_ws_unittests_app_manifest", |
| 261 ] | 262 ] |
| 262 } | 263 } |
| 263 | 264 |
| 264 service_manifest("mus_ws_unittests_app_manifest") { | 265 service_manifest("mus_ws_unittests_app_manifest") { |
| 265 name = "mus_ws_unittests_app" | 266 name = "mus_ws_unittests_app" |
| 266 source = "mus_ws_unittests_app_manifest.json" | 267 source = "mus_ws_unittests_app_manifest.json" |
| 267 } | 268 } |
| OLD | NEW |