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