blob: 7a4f3b208873ed6a6a5e78230d9024a0f1b0c85c [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.
import("//build/unification/zx_library.gni")
zx_library("digest") {
sdk = "source"
sdk_headers = [
"digest/digest.h",
"digest/hash-list.h",
"digest/merkle-tree.h",
"digest/node-digest.h",
]
host = true
sources = [
"digest.cc",
"hash-list.cc",
"merkle-tree.cc",
"node-digest.cc",
]
deps = [ "//third_party/boringssl" ]
public_deps = [ "//zircon/public/lib/fbl" ]
}
group("tests") {
testonly = true
deps = [ "test:tests" ]
}