| 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 "ime_registrar_impl.cc", | 13 "ime_registrar_impl.cc", |
| 14 "ime_registrar_impl.h", | 14 "ime_registrar_impl.h", |
| 15 "ime_server_impl.cc", | 15 "ime_server_impl.cc", |
| 16 "ime_server_impl.h", | 16 "ime_server_impl.h", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 deps = [ | 19 deps = [ |
| 20 "//base", | 20 "//base", |
| 21 "//mojo/common", | 21 "//mojo/common", |
| 22 "//mojo/public/cpp/bindings", | 22 "//mojo/public/cpp/bindings", |
| 23 "//services/service_manager/public/cpp", | 23 "//services/service_manager/public/cpp", |
| 24 "//services/tracing/public/cpp", | |
| 25 "//services/ui/public/interfaces", | 24 "//services/ui/public/interfaces", |
| 26 ] | 25 ] |
| 27 } | 26 } |
| 28 | 27 |
| 29 group("tests") { | 28 group("tests") { |
| 30 testonly = true | 29 testonly = true |
| 31 deps = [ | 30 deps = [ |
| 32 ":mus_ime_unittests", | 31 ":mus_ime_unittests", |
| 33 ] | 32 ] |
| 34 } | 33 } |
| (...skipping 25 matching lines...) Expand all Loading... |
| 60 source = "test_manifest.json" | 59 source = "test_manifest.json" |
| 61 } | 60 } |
| 62 | 61 |
| 63 catalog("mus_ime_unittests_catalog") { | 62 catalog("mus_ime_unittests_catalog") { |
| 64 embedded_services = [ ":test_manifest" ] | 63 embedded_services = [ ":test_manifest" ] |
| 65 standalone_services = [ | 64 standalone_services = [ |
| 66 "//services/ui:manifest", | 65 "//services/ui:manifest", |
| 67 "//services/ui/ime/test_ime_driver:manifest", | 66 "//services/ui/ime/test_ime_driver:manifest", |
| 68 ] | 67 ] |
| 69 } | 68 } |
| OLD | NEW |