blob: 25146c3e3aa3b059f656e68db58677c0e2653eca [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",
"calculator:all",
"cpp:all",
"fuchsia.examples.docs: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",
# 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",
]
}
}
}