| OLD | NEW | 
|---|
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//services/catalog/public/tools/catalog.gni") | 5 import("//services/catalog/public/tools/catalog.gni") | 
| 6 import("//services/service_manager/public/cpp/service.gni") | 6 import("//services/service_manager/public/cpp/service.gni") | 
| 7 import("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") | 
| 8 import("//services/service_manager/public/tools/test/service_test.gni") | 8 import("//services/service_manager/public/tools/test/service_test.gni") | 
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") | 
| 10 | 10 | 
| (...skipping 22 matching lines...) Expand all  Loading... | 
| 33 service_test("mus_clipboard_unittests") { | 33 service_test("mus_clipboard_unittests") { | 
| 34   sources = [ | 34   sources = [ | 
| 35     "clipboard_unittest.cc", | 35     "clipboard_unittest.cc", | 
| 36   ] | 36   ] | 
| 37 | 37 | 
| 38   catalog = ":mus_clipboard_unittests_catalog" | 38   catalog = ":mus_clipboard_unittests_catalog" | 
| 39 | 39 | 
| 40   deps = [ | 40   deps = [ | 
| 41     "//base", | 41     "//base", | 
| 42     "//mojo/common", | 42     "//mojo/common", | 
|  | 43     "//services/service_manager/public/cpp", | 
| 43     "//services/service_manager/public/cpp:service_test_support", | 44     "//services/service_manager/public/cpp:service_test_support", | 
| 44     "//services/service_manager/public/cpp:sources", |  | 
| 45     "//services/ui/public/interfaces", | 45     "//services/ui/public/interfaces", | 
| 46   ] | 46   ] | 
| 47 | 47 | 
| 48   data_deps = [ | 48   data_deps = [ | 
| 49     ":lib", | 49     ":lib", | 
| 50     "//services/ui", | 50     "//services/ui", | 
| 51   ] | 51   ] | 
| 52 } | 52 } | 
| 53 | 53 | 
| 54 service_manifest("test_manifest") { | 54 service_manifest("test_manifest") { | 
| 55   name = "mus_clipboard_unittests" | 55   name = "mus_clipboard_unittests" | 
| 56   source = "test_manifest.json" | 56   source = "test_manifest.json" | 
| 57 } | 57 } | 
| 58 | 58 | 
| 59 catalog("mus_clipboard_unittests_catalog") { | 59 catalog("mus_clipboard_unittests_catalog") { | 
| 60   embedded_services = [ ":test_manifest" ] | 60   embedded_services = [ ":test_manifest" ] | 
| 61   standalone_services = [ "//services/ui:manifest" ] | 61   standalone_services = [ "//services/ui:manifest" ] | 
| 62 } | 62 } | 
| OLD | NEW | 
|---|