| 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/service_manager/public/cpp/service.gni") | 5 import("//services/service_manager/public/cpp/service.gni") |
| 6 import("//services/service_manager/public/service_manifest.gni") | 6 import("//services/service_manager/public/service_manifest.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 source_set("lib") { | 9 source_set("lib") { |
| 10 sources = [ | 10 sources = [ |
| 11 "mojo_test_ime_application_factory.cc", |
| 12 "mojo_test_ime_application_factory.h", |
| 11 "test_ime_application.cc", | 13 "test_ime_application.cc", |
| 12 "test_ime_application.h", | 14 "test_ime_application.h", |
| 13 "test_ime_driver.cc", | 15 "test_ime_driver.cc", |
| 14 "test_ime_driver.h", | 16 "test_ime_driver.h", |
| 15 ] | 17 ] |
| 16 | 18 |
| 17 deps = [ | 19 deps = [ |
| 18 "//base", | 20 "//base", |
| 19 "//services/service_manager/public/cpp", | 21 "//services/service_manager/public/cpp", |
| 20 "//services/ui/public/interfaces", | 22 "//services/ui/public/interfaces", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 35 | 37 |
| 36 data_deps = [ | 38 data_deps = [ |
| 37 ":manifest", | 39 ":manifest", |
| 38 ] | 40 ] |
| 39 } | 41 } |
| 40 | 42 |
| 41 service_manifest("manifest") { | 43 service_manifest("manifest") { |
| 42 name = "test_ime_driver" | 44 name = "test_ime_driver" |
| 43 source = "manifest.json" | 45 source = "manifest.json" |
| 44 } | 46 } |
| OLD | NEW |