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

Side by Side Diff: services/catalog/BUILD.gn

Issue 2645973006: [Service Manager] Get rid of dynamic service discovery (Closed)
Patch Set: . Created 3 years, 11 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/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 group("catalog") { 9 group("catalog") {
10 testonly = true 10 testonly = true
11 deps = [ 11 deps = [
12 ":lib", 12 ":lib",
13 ] 13 ]
14 } 14 }
15 15
16 source_set("lib") { 16 source_set("lib") {
17 sources = [ 17 sources = [
18 "catalog.cc", 18 "catalog.cc",
19 "catalog.h", 19 "catalog.h",
20 "constants.cc", 20 "constants.cc",
21 "constants.h", 21 "constants.h",
22 "entry.cc", 22 "entry.cc",
23 "entry.h", 23 "entry.h",
24 "entry_cache.cc", 24 "entry_cache.cc",
25 "entry_cache.h", 25 "entry_cache.h",
26 "instance.cc", 26 "instance.cc",
27 "instance.h", 27 "instance.h",
28 "manifest_provider.h", 28 "manifest_provider.h",
29 "reader.cc",
30 "reader.h",
31 "store.cc", 29 "store.cc",
32 "store.h", 30 "store.h",
33 ] 31 ]
34 32
35 deps = [ 33 deps = [
36 "//base", 34 "//base",
37 "//components/filesystem:lib", 35 "//components/filesystem:lib",
38 "//services/catalog/public/interfaces", 36 "//services/catalog/public/interfaces",
39 "//services/service_manager/public/cpp", 37 "//services/service_manager/public/cpp",
40 ] 38 ]
(...skipping 21 matching lines...) Expand all
62 data = [ 60 data = [
63 "//services/catalog/data/", 61 "//services/catalog/data/",
64 ] 62 ]
65 deps = [ 63 deps = [
66 ":lib", 64 ":lib",
67 "//base", 65 "//base",
68 "//services/service_manager/public/cpp", 66 "//services/service_manager/public/cpp",
69 "//testing/gtest", 67 "//testing/gtest",
70 ] 68 ]
71 } 69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698