blob: 5db6c00de89d48c8bfa8434c9a6a52f5d993ce4f [file] [edit]
# 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.
load("@rules_cc//cc:cc_library.bzl", "cc_library")
package(default_applicable_licenses = ["//:license"])
cc_library(
name = "metric_properties",
srcs = [
"metric_properties.cc",
"optional_path.cc",
],
hdrs = [
"metric_properties.h",
"optional_path.h",
],
visibility = ["//visibility:public"],
deps = [
"//sdk/lib/syslog/cpp",
"//src/lib/files",
"//src/lib/fxl",
],
)