| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/display", | 133 "//services/ui/display", |
| 134 "//services/ui/public/interfaces", | 134 "//services/ui/public/interfaces", |
| 135 "//services/ui/surfaces", | |
| 136 "//ui/base", | 135 "//ui/base", |
| 137 "//ui/display", | 136 "//ui/display", |
| 138 "//ui/events", | 137 "//ui/events", |
| 139 "//ui/events/devices", | 138 "//ui/events/devices", |
| 140 "//ui/events/platform", | 139 "//ui/events/platform", |
| 141 "//ui/gfx", | 140 "//ui/gfx", |
| 142 "//ui/gfx/geometry", | 141 "//ui/gfx/geometry", |
| 143 "//ui/gfx/geometry/mojo", | 142 "//ui/gfx/geometry/mojo", |
| 144 "//ui/gl", | 143 "//ui/gl", |
| 145 "//ui/platform_window", | 144 "//ui/platform_window", |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 "//mojo/public/cpp/bindings:bindings", | 234 "//mojo/public/cpp/bindings:bindings", |
| 236 "//services/service_manager/public/cpp:service_test_support", | 235 "//services/service_manager/public/cpp:service_test_support", |
| 237 "//services/service_manager/public/cpp:sources", | 236 "//services/service_manager/public/cpp:sources", |
| 238 "//services/service_manager/public/cpp/test:run_all_service_tests", | 237 "//services/service_manager/public/cpp/test:run_all_service_tests", |
| 239 "//services/service_manager/public/interfaces", | 238 "//services/service_manager/public/interfaces", |
| 240 "//services/ui/common:mus_common", | 239 "//services/ui/common:mus_common", |
| 241 "//services/ui/public/cpp", | 240 "//services/ui/public/cpp", |
| 242 "//services/ui/public/cpp:internal_or_test", | 241 "//services/ui/public/cpp:internal_or_test", |
| 243 "//services/ui/public/cpp/tests:test_support", | 242 "//services/ui/public/cpp/tests:test_support", |
| 244 "//services/ui/public/interfaces", | 243 "//services/ui/public/interfaces", |
| 245 "//services/ui/surfaces", | |
| 246 "//testing/gtest", | 244 "//testing/gtest", |
| 247 "//third_party/mesa:osmesa", | 245 "//third_party/mesa:osmesa", |
| 248 "//ui/events", | 246 "//ui/events", |
| 249 "//ui/gfx", | 247 "//ui/gfx", |
| 250 "//ui/gfx:test_support", | 248 "//ui/gfx:test_support", |
| 251 "//ui/gfx/geometry", | 249 "//ui/gfx/geometry", |
| 252 "//ui/gfx/geometry/mojo", | 250 "//ui/gfx/geometry/mojo", |
| 253 "//ui/gl", | 251 "//ui/gl", |
| 254 ] | 252 ] |
| 255 | 253 |
| 256 if (use_x11) { | 254 if (use_x11) { |
| 257 deps += [ "//tools/xdisplaycheck" ] | 255 deps += [ "//tools/xdisplaycheck" ] |
| 258 } | 256 } |
| 259 | 257 |
| 260 data_deps = [ | 258 data_deps = [ |
| 261 ":mus_ws_unittests_app_manifest", | 259 ":mus_ws_unittests_app_manifest", |
| 262 ] | 260 ] |
| 263 } | 261 } |
| 264 | 262 |
| 265 service_manifest("mus_ws_unittests_app_manifest") { | 263 service_manifest("mus_ws_unittests_app_manifest") { |
| 266 name = "mus_ws_unittests_app" | 264 name = "mus_ws_unittests_app" |
| 267 source = "mus_ws_unittests_app_manifest.json" | 265 source = "mus_ws_unittests_app_manifest.json" |
| 268 } | 266 } |
| OLD | NEW |