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