blob: 6de88c1381b7dd8df3003a510012a0b4dace974e [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.
##########################################
# 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("chromeos-disk-setup") {
sdk = "source"
sdk_headers = [ "chromeos-disk-setup/chromeos-disk-setup.h" ]
sources = [ "chromeos-disk-setup.cc" ]
public_deps = [ "//zircon/system/fidl/fuchsia-hardware-block:c" ]
deps = [
"//zircon/public/lib/fit",
"//zircon/public/lib/gpt",
"//zircon/system/fidl/fuchsia-hardware-block:c",
]
}