| 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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 "//ui/gfx", | 251 "//ui/gfx", |
| 252 "//ui/gfx:test_support", | 252 "//ui/gfx:test_support", |
| 253 "//ui/gfx/geometry", | 253 "//ui/gfx/geometry", |
| 254 "//ui/gfx/geometry/mojo", | 254 "//ui/gfx/geometry/mojo", |
| 255 "//ui/gl", | 255 "//ui/gl", |
| 256 ] | 256 ] |
| 257 | 257 |
| 258 # TODO(fsamuel): Remove this dep. crbug.com/670454 | 258 # TODO(fsamuel): Remove this dep. crbug.com/670454 |
| 259 deps += [ "//services/ui/surfaces" ] | 259 deps += [ "//services/ui/surfaces" ] |
| 260 | 260 |
| 261 if (use_x11) { | |
| 262 deps += [ "//tools/xdisplaycheck" ] | |
| 263 } | |
| 264 | |
| 265 data_deps = [ | 261 data_deps = [ |
| 266 ":mus_ws_unittests_app_manifest", | 262 ":mus_ws_unittests_app_manifest", |
| 267 ] | 263 ] |
| 268 } | 264 } |
| 269 | 265 |
| 270 service_manifest("mus_ws_unittests_app_manifest") { | 266 service_manifest("mus_ws_unittests_app_manifest") { |
| 271 name = "mus_ws_unittests_app" | 267 name = "mus_ws_unittests_app" |
| 272 source = "mus_ws_unittests_app_manifest.json" | 268 source = "mus_ws_unittests_app_manifest.json" |
| 273 } | 269 } |
| OLD | NEW |