blob: c87e4a526c9134d0cbef52c8fd3f01379cbd26a8 [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.
library("kvstore") {
sources = [
"kvstore.c",
]
configs += [ "$zx/public/gn/config:visibility_hidden" ]
deps = [
"$zx/third_party/ulib/cksum",
]
}
test("kvstore-test") {
output_name = "kvstore-test"
sources = [
"kvstore-test.c",
]
deps = [
":kvstore",
"$zx/system/ulib/fdio",
"$zx/system/ulib/pretty",
"$zx/system/ulib/unittest",
"$zx/third_party/ulib/cksum",
]
}