blob: a89526440f6f833efb9706f41d1bc315dcd1fa52 [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/components.gni")
# Generates a component with a storage-driver-test-realm.
template("storage_driver_test_realm_v2_component") {
fuchsia_unittest_component(target_name) {
forward_variables_from(invoker, "*")
deps += [
"//src/storage/testing:storage_driver_test_realm",
"//src/storage/testing:storage_test_includes",
]
}
}