| Index: services/BUILD.gn
|
| diff --git a/services/BUILD.gn b/services/BUILD.gn
|
| index 3a3339942f11e3a84ba8980c4b1987e7bf79457f..ae468d5c5fa70303b9b093372bd7292e19fd885b 100644
|
| --- a/services/BUILD.gn
|
| +++ b/services/BUILD.gn
|
| @@ -2,6 +2,7 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +import("//build/config/ui.gni")
|
| import("//services/catalog/public/tools/catalog.gni")
|
| import("//services/service_manager/public/tools/test/service_test.gni")
|
| import("//testing/test.gni")
|
| @@ -23,6 +24,10 @@ service_test("service_unittests") {
|
| "//services/shape_detection:tests",
|
| ]
|
|
|
| + if (use_aura) {
|
| + deps += [ "//services/ui/clipboard:tests" ]
|
| + }
|
| +
|
| if (is_android) {
|
| deps += [
|
| "//services/device:java",
|
| @@ -48,6 +53,10 @@ catalog("service_unittests_catalog") {
|
| "//services/preferences:tests_catalog",
|
| "//services/video_capture:tests_catalog",
|
| ]
|
| +
|
| + if (use_aura) {
|
| + catalog_deps += [ "//services/ui/clipboard:tests_catalog" ]
|
| + }
|
| }
|
|
|
| if (is_android) {
|
|
|