blob: c717cdc0e1c31359bd0f62e415b67f7c3d8bbb42 [file] [log] [blame] [edit]
# 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")
test("inspect_service_cpp_unittests") {
sources = [
"reader_unittests.cc",
"service_unittests.cc",
]
deps = [
"//garnet/public/lib/gtest",
"//sdk/fidl/fuchsia.inspect",
"//sdk/lib/inspect/service/cpp",
"//sdk/lib/inspect/testing/cpp",
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gmock",
"//zircon/system/ulib/inspect",
]
}
fuchsia_unittest_package("inspect_service_cpp_tests") {
deps = [ ":inspect_service_cpp_unittests" ]
manifest = "meta/inspect_service_cpp_unittests.cmx"
}