blob: 143050450fbae9d203cb6a8d939550ea40f1ea1a [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/test.gni")
import("//src/sys/build/components.gni")
executable("fidlcat_test_bin") {
testonly = true
sources = [ "fidlcat_test.cc" ]
deps = [
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gmock",
"//third_party/googletest:gtest",
]
}
fuchsia_unittest_package("fidlcat_tests") {
deps = [ ":fidlcat_test_bin" ]
}
group("tests") {
testonly = true
deps = [ ":fidlcat_tests" ]
}