blob: dc195b12275aeab01c2bb51c62ec0d5ec700b2c2 [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.
import("//build/fuzzing/fuzzer.gni")
source_set("commit_pack") {
sources = [
"commit_pack.cc",
"commit_pack.h",
]
deps = [
"//peridot/lib/convert",
]
public_deps = [
"//sdk/fidl/fuchsia.ledger.cloud",
]
}
source_set("unittests") {
testonly = true
sources = [
"commit_pack_unittest.cc",
]
deps = [
":commit_pack",
"//third_party/googletest:gtest",
]
}
fuzzer("commit_pack_fuzzer") {
sources = [
"commit_pack_fuzztest.cc",
]
deps = [
":commit_pack",
"//peridot/lib/convert",
]
}