blob: b7c07ccdb3ecaed7f73777c1ca5685607acd52f0 [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.
zx_library("smbios") {
kernel = true
static = true
sources = [
"smbios.cc",
]
deps = [
"$zx/system/ulib/fbl",
]
}
zx_test("smbios-test") {
sources = [
"smbios-test.cc",
]
deps = [
":smbios",
"$zx/system/ulib/fdio",
"$zx/system/ulib/zxtest",
]
}