blob: 31f587dbfd6f4c22309624406e57ba53c883f1c4 [file]
# Copyright 2026 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/rust/rustc_library.gni")
assert(is_host, "agents is for use with the host toolchain only")
rustc_library("lib") {
name = "agents"
version = "0.1.0"
edition = "2024"
with_unit_tests = true
deps = []
sources = [ "src/lib.rs" ]
inputs = [ "//tools/devshell/lib/agents.txt" ]
}
group("agents") {
public_deps = [ ":lib" ]
}
group("tests") {
testonly = true
deps = [ ":lib_test" ]
}