blob: 710bbc42551388bf601598149dedbca75455039f [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("driver-info_config") {
include_dirs = [ "include" ]
}
static_library("driver-info") {
sources = [
"driver-info.c",
]
public = [
"include/driver-info/driver-info.h",
]
deps = [
"//zircon/third_party/ulib/cksum",
]
public_configs = [ ":driver-info_config" ]
}