| # 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/components.gni") |
| import("//build/test.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" ] |
| } |