blob: af1cc73e137267d7fcb1c3fceb599088b2c6a6ce [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("//peridot/build/tests_package.gni")
visibility = [ "//peridot/*" ]
source_set("bup") {
sources = [
"bupsplit.cc",
"bupsplit.h",
]
public_deps = [
"//garnet/public/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",
]
}