blob: b144017fc57c821186e044de40d2c2b7bbad019f [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/testing/environments.gni")
import("//peridot/build/tests_package.gni")
visibility = [ "//src/ledger/*" ]
source_set("bup") {
sources = [
"bupsplit.cc",
"bupsplit.h",
]
public_deps = [
"//src/lib/fxl",
]
}
executable("bupsplit_unittest") {
testonly = true
sources = [
"bupsplit_unittest.cc",
]
deps = [
":bup",
"//third_party/googletest:gtest_main",
]
}
tests_package("bup_tests") {
deps = [
":bupsplit_unittest",
]
environments = basic_envs
}