blob: 86ec259fd58b5fd6ecfcad37fec94860a479211a [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")
group("tests") {
testonly = true
public_deps = [
":unittests",
]
}
executable("unittests") {
testonly = true
output_name = "gfx_util_unittests"
sources = [
"validate_eventpair_test.cc",
]
deps = [
"//garnet/lib/ui/gfx:validate_eventpair",
"//sdk/fidl/fuchsia.ui.views",
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gtest",
"//zircon/public/lib/zx",
]
}