blob: bc5097b45f953b0cc2019d02ab031987aa53dde8 [file] [log] [blame]
# Copyright 2020 The Chromium OS 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("//common-mk/pkg_config.gni")
# Library that provides utilities used by cros_healthd's root-level executor.
pkg_config("libcros_healthd_executor_pkg_deps") {
pkg_deps = [
"libbrillo",
"libchrome",
"libmojo",
]
}
source_set("libcros_healthd_executor") {
sources = [
"executor.cc",
"executor_daemon.cc",
]
configs += [ ":libcros_healthd_executor_pkg_deps" ]
deps = [
"//diagnostics/cros_healthd/executor/mojom:cros_healthd_executor_mojo_bindings",
"//diagnostics/cros_healthd/executor/utils",
"//diagnostics/cros_healthd/process:libcros_healthd_process",
"//diagnostics/cros_healthd/utils:libcros_healthd_utils",
]
}