blob: c772bd33f3ee639aaa8ff38413131f63d87994e5 [file] [log] [blame]
# Copyright 2022 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.
group("fastboot") {
public_deps = [ ":lib" ]
}
config("include") {
include_dirs = [ "include" ]
}
source_set("lib") {
sources = [
"fastboot.cc",
"payload-streamer.cc",
"sparse_format.h",
]
public_configs = [ ":include" ]
public_deps = [
"//sdk/fidl/fuchsia.hardware.power.statecontrol:fuchsia.hardware.power.statecontrol_llcpp",
"//sdk/fidl/fuchsia.paver:fuchsia.paver_llcpp",
"//src/developer/sshd-host:sshd_constants",
"//zircon/system/ulib/fzl",
"//zircon/system/ulib/zxc",
]
deps = [
"//src/lib/fxl",
"//src/storage/lib/paver",
"//zircon/system/ulib/async-default",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/service:service-llcpp",
"//zircon/system/ulib/syslog",
"//zircon/system/ulib/zx",
]
}