blob: 811463360772342f9bb772be70a246eb866271b7 [file] [log] [blame]
# Copyright 2017 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.
config("gpt_config") {
include_dirs = [ "include" ]
}
static_library("gpt") {
sources = [
"gpt.c",
]
public = [
"include/gpt/gpt.h",
]
deps = [
"//zircon/third_party/ulib/cksum",
]
public_configs = [ ":gpt_config" ]
}