blob: 412be22467a99c5e59dd0e3bebcb50e1f639e974 [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.
import("//build/assembly/bootfs_files_for_assembly.gni")
executable("gpt") {
visibility = [ ":*" ]
sources = [ "gpt.cc" ]
deps = [
"//sdk/fidl/fuchsia.device:fuchsia.device_cpp",
"//sdk/fidl/fuchsia.hardware.block:fuchsia.hardware.block_cpp",
"//sdk/lib/component/incoming/cpp",
"//src/storage/gpt",
"//src/storage/lib/block_client/cpp",
"//zircon/system/ulib/zx",
]
# TODO(https://fxbug.dev/42085293): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-vla-cxx-extension" ]
}
bootfs_files_for_assembly("bootfs") {
deps = [ ":gpt" ]
}