blob: 67aec67ae36d3a3cf6558ade913bc5cb22705ccf [file] [log] [blame] [edit]
# Copyright 2023 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.
source_set("test_node") {
testonly = true
sources = [
"test_node.cc",
"test_node.h",
]
public_deps =
[ "//sdk/fidl/fuchsia.driver.framework:fuchsia.driver.framework_cpp" ]
}
source_set("cpp") {
testonly = true
sources = [
"driver_lifecycle.cc",
"driver_lifecycle.h",
"environment_variables.cc",
"start_args.cc",
"start_args.h",
"test_environment.cc",
"test_environment.h",
]
public_deps = [
":test_node",
"//sdk/lib/driver/component/cpp",
"//sdk/lib/driver/runtime/testing/runtime",
]
}