# Copyright 2020 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/test.gni") | |
template("zx_test") { | |
test(target_name) { | |
forward_variables_from(invoker, "*", [ "sdk_migrated" ]) | |
} | |
not_needed(invoker, [ "sdk_migrated" ]) | |
} | |
set_defaults("zx_test") { | |
configs = default_executable_configs | |
} |