aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/boringssl/gen_build_yaml.py
diff options
context:
space:
mode:
authorGravatar Matt Kwong <mattkwong@google.com>2018-02-23 14:22:39 -0800
committerGravatar Matt Kwong <mattkwong@google.com>2018-02-23 15:13:51 -0800
commit77f77f7e34ab2f735bea7a463b271289057ad3e9 (patch)
tree0a5006d15adeb444d979bf20a7803967391b1b9b /src/boringssl/gen_build_yaml.py
parent5b0685b6c286489dd8cd39611e7409df09ccf52e (diff)
Include Boringssl fips_fragments files in headers for building
Diffstat (limited to 'src/boringssl/gen_build_yaml.py')
-rwxr-xr-xsrc/boringssl/gen_build_yaml.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/boringssl/gen_build_yaml.py b/src/boringssl/gen_build_yaml.py
index 221cbe7fd5..593b66dc4d 100755
--- a/src/boringssl/gen_build_yaml.py
+++ b/src/boringssl/gen_build_yaml.py
@@ -67,7 +67,9 @@ class Grpc(object):
),
'headers': sorted(
map_dir(f)
- for f in files['ssl_headers'] + files['ssl_internal_headers'] + files['crypto_headers'] + files['crypto_internal_headers']
+ # We want to include files['fips_fragments'], but not build them as objects.
+ # See https://boringssl-review.googlesource.com/c/boringssl/+/16946
+ for f in files['ssl_headers'] + files['ssl_internal_headers'] + files['crypto_headers'] + files['crypto_internal_headers'] + files['fips_fragments']
),
'boringssl': True,
'defaults': 'boringssl',