blob: 3810c12a63d98145c5a8892e88f72a6bec033efb [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
visibility = [ "//src/ledger/*" ]
source_set("inspect") {
sources = [
"inspect.cc",
"inspect.h",
]
public_deps = [ "//src/ledger/bin/storage/public" ]
deps = [
"//src/ledger/bin/app:constants",
"//src/ledger/fidl/fuchsia.ledger",
"//src/ledger/lib/logging",
"//third_party/abseil-cpp",
]
}
source_set("unittests") {
testonly = true
sources = [ "inspect_unittest.cc" ]
deps = [
":inspect",
"//src/ledger/bin/app:constants",
"//src/ledger/bin/storage/public",
"//src/ledger/lib/convert",
"//third_party/googletest:gmock",
"//third_party/googletest:gtest",
]
}