blob: c6cc5dfd0bc52abaf1aa742aa79f1de7a2cb344c [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.
##########################################
# Though under //zircon, this build file #
# is meant to be used in the Fuchsia GN #
# build. #
# See fxb/36548. #
##########################################
assert(!defined(zx) || zx != "/",
"This file can only be used in the Fuchsia GN build.")
import("//build/unification/zx_library.gni")
zx_library("mock-boot-arguments") {
sdk = "source"
sdk_headers = [ "mock-boot-arguments/server.h" ]
sources = [ "server.cc" ]
deps = [
"//zircon/public/lib/async",
"//zircon/public/lib/fbl",
"//zircon/public/lib/fidl",
"//zircon/public/lib/fidl-async",
"//zircon/system/fidl/fuchsia-boot:llcpp",
]
}