blob: ff0db6a789117080a04e388d4b66501dcc4bc536 [file] [log] [blame]
# Copyright 2020 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.
visibility = [ "//src/developer/forensics/*" ]
###############################################################################
# SOURCES
###############################################################################
source_set("component") {
sources = [
"component.cc",
"component.h",
]
public_deps = [
"//sdk/fidl/fuchsia.process.lifecycle",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/inspect/cpp",
"//sdk/lib/syslog/cpp",
"//src/lib/timekeeper",
"//src/lib/timekeeper:system",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
deps = [ "//src/lib/files" ]
}