blob: d6c54c5e36138cee7ccce5db8707989401e6346c [file] [log] [blame]
# Copyright 2021 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") {
sdk_name = "driver_test_realm_builder"
category = "internal"
sources = [ "lib.cc" ]
public = [ "lib.h" ]
include_base = "//sdk"
non_sdk_public_deps = [
"//sdk/lib/driver_test_realm:realm_builder_version",
"//sdk/lib/sys/component/cpp/testing:cpp",
]
public_deps = [
"//sdk/lib/sys/component/cpp/testing:cpp_library",
"//zircon/system/ulib/async-loop",
"//zircon/system/ulib/async-loop:async-loop-cpp",
]
}