| 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 ":lib", | 230 ":lib", |
| 231 ":test_support", | 231 ":test_support", |
| 232 "//base", | 232 "//base", |
| 233 "//base/test:test_config", | 233 "//base/test:test_config", |
| 234 "//base/test:test_support", | 234 "//base/test:test_support", |
| 235 "//cc:cc", | 235 "//cc:cc", |
| 236 "//gpu/ipc/client", | 236 "//gpu/ipc/client", |
| 237 "//mojo/public/cpp/bindings:bindings", | 237 "//mojo/public/cpp/bindings:bindings", |
| 238 "//services/service_manager/public/cpp:service_test_support", | 238 "//services/service_manager/public/cpp:service_test_support", |
| 239 "//services/service_manager/public/cpp:sources", | 239 "//services/service_manager/public/cpp:sources", |
| 240 "//services/service_manager/public/cpp/test:run_all_shelltests", | 240 "//services/service_manager/public/cpp/test:run_all_service_tests", |
| 241 "//services/service_manager/public/interfaces", | 241 "//services/service_manager/public/interfaces", |
| 242 "//services/ui/common:mus_common", | 242 "//services/ui/common:mus_common", |
| 243 "//services/ui/public/cpp", | 243 "//services/ui/public/cpp", |
| 244 "//services/ui/public/cpp:internal_or_test", | 244 "//services/ui/public/cpp:internal_or_test", |
| 245 "//services/ui/public/cpp/tests:test_support", | 245 "//services/ui/public/cpp/tests:test_support", |
| 246 "//services/ui/public/interfaces", | 246 "//services/ui/public/interfaces", |
| 247 "//services/ui/surfaces", | 247 "//services/ui/surfaces", |
| 248 "//testing/gtest", | 248 "//testing/gtest", |
| 249 "//third_party/mesa:osmesa", | 249 "//third_party/mesa:osmesa", |
| 250 "//ui/events", | 250 "//ui/events", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 261 | 261 |
| 262 data_deps = [ | 262 data_deps = [ |
| 263 ":mus_ws_unittests_app_manifest", | 263 ":mus_ws_unittests_app_manifest", |
| 264 ] | 264 ] |
| 265 } | 265 } |
| 266 | 266 |
| 267 service_manifest("mus_ws_unittests_app_manifest") { | 267 service_manifest("mus_ws_unittests_app_manifest") { |
| 268 name = "mus_ws_unittests_app" | 268 name = "mus_ws_unittests_app" |
| 269 source = "mus_ws_unittests_app_manifest.json" | 269 source = "mus_ws_unittests_app_manifest.json" |
| 270 } | 270 } |
| OLD | NEW |