mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
77 lines
1.4 KiB
Plaintext
77 lines
1.4 KiB
Plaintext
# Copyright 2016 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//services/service_manager/public/cpp/service.gni")
|
|
import("//services/service_manager/public/service_manifest.gni")
|
|
import("//testing/test.gni")
|
|
|
|
group("catalog") {
|
|
testonly = true
|
|
deps = [
|
|
":lib",
|
|
]
|
|
}
|
|
|
|
source_set("constants") {
|
|
sources = [
|
|
"store.cc",
|
|
"store.h",
|
|
]
|
|
}
|
|
|
|
component("lib") {
|
|
sources = [
|
|
"catalog.cc",
|
|
"catalog.h",
|
|
"constants.cc",
|
|
"constants.h",
|
|
"entry.cc",
|
|
"entry.h",
|
|
"entry_cache.cc",
|
|
"entry_cache.h",
|
|
"instance.cc",
|
|
"instance.h",
|
|
"manifest_provider.h",
|
|
]
|
|
|
|
deps = [
|
|
":constants",
|
|
"//base",
|
|
"//components/services/filesystem:lib",
|
|
"//services/catalog/public/cpp",
|
|
"//services/catalog/public/mojom",
|
|
"//services/service_manager/public/cpp",
|
|
]
|
|
|
|
public_deps = [
|
|
# directory.mojom.h is #included by catalog.h
|
|
"//components/services/filesystem/public/interfaces",
|
|
]
|
|
|
|
output_name = "catalog_lib"
|
|
|
|
defines = [ "IS_CATALOG_IMPL" ]
|
|
}
|
|
|
|
service_manifest("manifest") {
|
|
name = "catalog"
|
|
source = "manifest.json"
|
|
}
|
|
|
|
source_set("unittests") {
|
|
testonly = true
|
|
sources = [
|
|
"entry_unittest.cc",
|
|
]
|
|
data = [
|
|
"//services/catalog/test_data/",
|
|
]
|
|
deps = [
|
|
":lib",
|
|
"//base",
|
|
"//services/service_manager/public/cpp",
|
|
"//testing/gtest",
|
|
]
|
|
}
|