blob: 17760c57207410b6e8d530296cfe8f5067885602 [file] [log] [blame]
# Copyright 2022 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")
rustc_library("builders") {
name = "fuchsia_cobalt_builders"
edition = "2021"
version = "0.1.0"
with_unit_tests = true
deps = [
"//sdk/fidl/fuchsia.metrics:fuchsia.metrics_rust",
"//third_party/cobalt/src/lib/client/rust:cobalt-client",
]
sources = [
"src/lib.rs",
"src/metric_event_builder.rs",
]
}