blob: 75a9092ee90540c35b754031c79319e11d025062 [file] [log] [blame]
# 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.
if (is_fuchsia) {
group("fidl") {
testonly = true
deps = [
":hermetic_tests",
":host_tests($host_toolchain)",
"calculator:all",
"cpp:all",
"fuchsia.examples.docs:all",
"hlcpp:all",
"rust:all",
]
if (current_cpu != "riscv64") {
deps += [
# The Go toolchain does not support RISC-V.
"go:all",
]
}
}
group("hermetic_tests") {
testonly = true
deps = [
"calculator:hermetic_tests",
"cpp:hermetic_tests",
"echo-realm:hermetic_tests",
"hlcpp:hermetic_tests",
# These examples are full off "do not remove" comments, but only contain
# hermetic tests.
"new:tests",
]
if (current_cpu != "riscv64") {
deps += [
# The Go toolchain does not support RISC-V.
"go:hermetic_tests",
]
}
}
}
if (is_host) {
group("host_tests") {
testonly = true
deps = [ "hlcpp:host_tests" ]
}
}