blob: 616848c4cd3c1c794281044b08f4d3be80c95faa [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/cpp/sdk_source_set.gni")
sdk_source_set("cpp") {
testonly = true
category = "partner"
sdk_name = "modular_testing_cpp"
include_base = "//sdk"
public_configs = [ "//sdk/config" ]
sources = [
"fake_agent.cc",
"fake_agent.h",
"fake_component.cc",
"fake_component.h",
"test_harness_builder.cc",
"test_harness_builder.h",
"test_harness_launcher.cc",
"test_harness_launcher.h",
]
public_deps = [
"//sdk/fidl/fuchsia.modular:fuchsia.modular_hlcpp",
"//sdk/fidl/fuchsia.modular.testing:fuchsia.modular.testing_hlcpp",
"//sdk/lib/fit",
"//sdk/lib/modular/cpp",
"//sdk/lib/stdcompat",
"//sdk/lib/sys/cpp",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
}