blob: 24e8d8a2f8e5f35f552e5cd29b8671890f2e4fc2 [file] [log] [blame] [edit]
# Copyright 2019 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.
source_set("metrics") {
sources = [
"bucket_match.cc",
"bucket_match.h",
"capture.cc",
"capture.h",
"digest.cc",
"digest.h",
"printer.cc",
"printer.h",
"summary.cc",
"summary.h",
"watcher.cc",
"watcher.h",
]
public_deps = [
"//sdk/fidl/fuchsia.kernel:fuchsia.kernel_cpp_wire",
"//third_party/re2",
]
deps = [
"//sdk/lib/component/incoming/cpp",
"//src/lib/fsl",
"//src/lib/fxl",
"//third_party/rapidjson",
"//zircon/system/ulib/task-utils",
"//zircon/system/ulib/trace",
]
# TODO(https://fxbug.dev/58162): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}