blob: 22139c459a868e9249ba08abe9d4eeb822e35042 [file] [log] [blame]
Yi Choufc39c8b2021-10-14 19:48:25 +08001# Copyright 2021 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//common-mk/pkg_config.gni")
6
7group("all") {
8 deps = [ ":libpinweaver" ]
9}
10
11config("target_defaults") {
12 include_dirs = [
13 ".",
14 "eal/tpm_storage",
15 ]
16}
17
18static_library("libpinweaver") {
19 sources = [ "pinweaver.c" ]
20 configs -= [ "//common-mk:use_thin_archive" ]
21 configs += [
22 "//common-mk:nouse_thin_archive",
23 ":target_defaults",
24 ]
25}