blob: 5fcdd5afef40f6ab770a84108d037e16c0c66cb5 [file] [log] [blame]
# Copyright 2016 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.
source_set("cpp") {
sources = [
"formatting.cc",
"formatting.h",
"geometry_util.cc",
"geometry_util.h",
]
public_configs = [ "//garnet/public:config" ]
public_deps = [
"//sdk/fidl/fuchsia.math",
]
}
executable("tests") {
output_name = "geometry_util_unittests"
testonly = true
sources = [
"tests/geometry_util_unittests.cc",
]
deps = [
":cpp",
"//garnet/public/lib/gtest",
"//src/lib/fxl/test:gtest_main",
]
}