Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(102)

Side by Side Diff: services/ui/ime/BUILD.gn

Issue 2945283002: Unify IMEDriver and IMEServer. (Closed)
Patch Set: Addressed feedback. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_driver_bridge.cc",
14 "ime_driver_bridge.h",
13 "ime_registrar_impl.cc", 15 "ime_registrar_impl.cc",
14 "ime_registrar_impl.h", 16 "ime_registrar_impl.h",
15 "ime_server_impl.cc",
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/ui/public/interfaces", 24 "//services/ui/public/interfaces",
25 ] 25 ]
26 } 26 }
(...skipping 23 matching lines...) Expand all
50 service_manifest("unittest_manifest") { 50 service_manifest("unittest_manifest") {
51 name = "ime_unittests" 51 name = "ime_unittests"
52 source = "test_manifest.json" 52 source = "test_manifest.json"
53 } 53 }
54 54
55 catalog("tests_catalog") { 55 catalog("tests_catalog") {
56 testonly = true 56 testonly = true
57 embedded_services = [ ":unittest_manifest" ] 57 embedded_services = [ ":unittest_manifest" ]
58 standalone_services = [ "//services/ui/ime/test_ime_driver:manifest" ] 58 standalone_services = [ "//services/ui/ime/test_ime_driver:manifest" ]
59 } 59 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/ime_driver/ime_driver_mus.cc ('k') | services/ui/ime/ime_driver_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698