blob: c8fbb3f3130887871f1478795e62f954d3a6996a [file] [log] [blame]
# Copyright 2017 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/package.gni")
group("lib") {
testonly = true
deps = [
":peridot_lib_unittests",
"base64url",
"ledger_client",
"rng",
"scoped_tmpfs",
"util",
]
}
executable("peridot_lib_unittests") {
testonly = true
deps = [
"//peridot/lib/base64url:unittests",
"//peridot/lib/ledger_client:unittests",
"//peridot/lib/rng:unittests",
"//peridot/lib/scoped_tmpfs:unittests",
"//peridot/lib/util:unittests",
"//src/lib/fxl/test:gtest_main",
]
}