| # 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", |
| ] |
| defines = [ |
| "BIOMETRICS_DEV=${use.biometrics_dev}", |
| ] |
| } |