blob: 22139c459a868e9249ba08abe9d4eeb822e35042 [file] [log] [blame]
# Copyright 2021 The Chromium OS 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("//common-mk/pkg_config.gni")
group("all") {
deps = [ ":libpinweaver" ]
}
config("target_defaults") {
include_dirs = [
".",
"eal/tpm_storage",
]
}
static_library("libpinweaver") {
sources = [ "pinweaver.c" ]
configs -= [ "//common-mk:use_thin_archive" ]
configs += [
"//common-mk:nouse_thin_archive",
":target_defaults",
]
}