| 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 |
| 11 source_set("lib") { | 11 source_set("lib") { |
| 12 sources = [ | 12 sources = [ |
| 13 "clipboard_impl.cc", | 13 "clipboard_impl.cc", |
| 14 "clipboard_impl.h", | 14 "clipboard_impl.h", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 deps = [ | 17 deps = [ |
| 18 "//base", | 18 "//base", |
| 19 "//mojo/common", | 19 "//mojo/common", |
| 20 "//mojo/public/cpp/bindings", | 20 "//mojo/public/cpp/bindings", |
| 21 "//services/service_manager/public/cpp", | 21 "//services/service_manager/public/cpp", |
| 22 "//services/tracing/public/cpp", | |
| 23 "//services/ui/public/interfaces", | 22 "//services/ui/public/interfaces", |
| 24 ] | 23 ] |
| 25 } | 24 } |
| 26 | 25 |
| 27 group("tests") { | 26 group("tests") { |
| 28 testonly = true | 27 testonly = true |
| 29 deps = [ | 28 deps = [ |
| 30 ":mus_clipboard_unittests", | 29 ":mus_clipboard_unittests", |
| 31 ] | 30 ] |
| 32 } | 31 } |
| (...skipping 21 matching lines...) Expand all Loading... |
| 54 | 53 |
| 55 service_manifest("test_manifest") { | 54 service_manifest("test_manifest") { |
| 56 name = "mus_clipboard_unittests" | 55 name = "mus_clipboard_unittests" |
| 57 source = "test_manifest.json" | 56 source = "test_manifest.json" |
| 58 } | 57 } |
| 59 | 58 |
| 60 catalog("mus_clipboard_unittests_catalog") { | 59 catalog("mus_clipboard_unittests_catalog") { |
| 61 embedded_services = [ ":test_manifest" ] | 60 embedded_services = [ ":test_manifest" ] |
| 62 standalone_services = [ "//services/ui:manifest" ] | 61 standalone_services = [ "//services/ui:manifest" ] |
| 63 } | 62 } |
| OLD | NEW |