blob: 1dd1cfab351c6ad079797a57dcb691453f67049f [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/package.gni")
import("//build/test/test_package.gni")
source_set("uuid") {
sources = [
"uuid.cc",
"uuid.h",
]
deps = [
"//src/lib/fxl",
]
}
executable("uuid_unittests") {
testonly = true
sources = [
"uuid_unittest.cc",
]
deps = [
":uuid",
"//third_party/googletest:gtest",
"//third_party/googletest:gtest_main",
]
}
test_package("uuid_tests") {
deps = [
":uuid_unittests",
]
tests = [
{
name = "uuid_unittests"
},
]
}