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 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", |
29 "store.cc", | 31 "store.cc", |
30 "store.h", | 32 "store.h", |
31 ] | 33 ] |
32 | 34 |
33 deps = [ | 35 deps = [ |
34 "//base", | 36 "//base", |
35 "//components/filesystem:lib", | 37 "//components/filesystem:lib", |
36 "//services/catalog/public/interfaces", | 38 "//services/catalog/public/interfaces", |
37 "//services/service_manager/public/cpp", | 39 "//services/service_manager/public/cpp", |
38 ] | 40 ] |
(...skipping 21 matching lines...) Expand all Loading... |
60 data = [ | 62 data = [ |
61 "//services/catalog/data/", | 63 "//services/catalog/data/", |
62 ] | 64 ] |
63 deps = [ | 65 deps = [ |
64 ":lib", | 66 ":lib", |
65 "//base", | 67 "//base", |
66 "//services/service_manager/public/cpp", | 68 "//services/service_manager/public/cpp", |
67 "//testing/gtest", | 69 "//testing/gtest", |
68 ] | 70 ] |
69 } | 71 } |
OLD | NEW |