blob: dafe098cba5705b3ff3b403fc3a5cc1243e316b6 [file] [log] [blame]
# Copyright 2022 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("//tools/fidl/measure-tape/measure_tape.gni")
measure_tape("measure_tape_for_case") {
fidls = [ "//sdk/fidl/fuchsia.test" ]
target_types = [ "fuchsia.test/Case" ]
target_binding = "hlcpp"
}
source_set("test_suite_lib") {
sources = [
"test_suite.cc",
"test_suite.h",
]
public_deps = [
":measure_tape_for_case",
"//sdk/fidl/fuchsia.test:fuchsia.test_hlcpp",
"//sdk/lib/sys/cpp",
"//sdk/lib/syslog/cpp",
"//src/lib/fxl",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
}