blob: 95bc053128951ea89ca509af0cec15d031129536 [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/zircon/zx_library.gni")
zx_library("mock-boot-arguments") {
sdk = "source"
sdk_headers = [ "mock-boot-arguments/server.h" ]
sources = [ "server.cc" ]
public_deps = [
"//sdk/fidl/fuchsia.boot:fuchsia.boot_cpp",
"//sdk/lib/async",
]
deps = [
"//sdk/lib/fidl",
"//zircon/system/ulib/fbl",
]
}