blob: bda2e0d0f772e708af86677d9c8499924687244f [file] [log] [blame]
# 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.
zx_executable("thermal-cli") {
sources = [
"main.cc",
]
deps = [
":common",
"$zx/system/fidl/fuchsia-hardware-thermal:c",
"$zx/system/ulib/fbl",
"$zx/system/ulib/fdio",
"$zx/system/ulib/zx",
]
}
source_set("common") {
sources = [
"thermal-cli.cc",
"thermal-cli.h",
]
deps = [
"$zx/system/fidl/fuchsia-hardware-thermal:c",
"$zx/system/ulib/fbl",
"$zx/system/ulib/fzl",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zx",
]
}
zx_test("thermal-cli-test") {
output_name = "thermal-cli-test"
sources = [
"test/thermal-cli-test.cc",
]
include_dirs = [ "." ]
deps = [
":common",
"$zx/system/fidl/fuchsia-hardware-thermal:c",
"$zx/system/ulib/async-loop:async-loop-cpp",
"$zx/system/ulib/async-loop:async-loop-default.static",
"$zx/system/ulib/fdio",
"$zx/system/ulib/fidl-utils",
"$zx/system/ulib/mock-function",
"$zx/system/ulib/zxtest",
]
}