blob: 6602f2faeeab3a2bae6cd4a1687c3d1f9e2624f3 [file] [log] [blame]
# Copyright 2018 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("filesystem") {
sources = [
"get_directory_content_size.cc",
"get_directory_content_size.h",
]
public_deps = [
"//src/ledger/bin/platform",
"//src/ledger/lib/files",
"//third_party/abseil-cpp",
"//zircon/public/lib/fit",
]
deps = [ "//src/ledger/lib/logging" ]
}
source_set("unittests") {
testonly = true
sources = [ "get_directory_content_size_unittest.cc" ]
deps = [
":filesystem",
"//src/ledger/bin/platform:implementation",
"//src/ledger/lib/convert",
"//src/ledger/lib/files",
"//third_party/abseil-cpp",
"//third_party/googletest:gtest",
]
configs += [ "//src/ledger:ledger_config" ]
}