blob: 6ae9239f1f9e4732070127fa32a08d98592b0d1e [file] [log] [blame]
# Copyright 2018 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/toolchain/clang_toolchain.gni")
# A toolchain dedicated to processing Banjo libraries.
# The only targets in this toolchain are action() targets, so it
# has no real tools. But every toolchain needs stamp and copy.
toolchain("banjoing") {
tool("stamp") {
command = stamp_command
description = stamp_description
}
tool("copy") {
command = copy_command
description = copy_description
}
toolchain_args = {
toolchain_variant = {
}
toolchain_variant = {
base = get_label_info(":banjoing", "label_no_toolchain")
}
}
}