blob: 4128633a3018c480afc96d6772e0365a75eb0c1b [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.
import("//build/unification/zx_library.gni")
zx_library("mock-boot-arguments") {
sdk = "source"
sdk_headers = [ "mock-boot-arguments/server.h" ]
sources = [ "server.cc" ]
deps = [
"//sdk/fidl/fuchsia.boot:fuchsia.boot_llcpp",
"//zircon/public/lib/async",
"//zircon/public/lib/fbl",
"//zircon/public/lib/fidl",
"//zircon/system/ulib/fidl-async",
"//zircon/system/ulib/fidl-async:fidl-async-cpp",
]
}