Skip to content

Commit

Permalink
Add pki file lists to generated gn build files
Browse files Browse the repository at this point in the history
Change-Id: I215f9090e12314bcc3b0e15f5e83b751fea42003
Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/62726
Commit-Queue: David Benjamin <[email protected]>
Auto-Submit: Bob Beck <[email protected]>
Reviewed-by: David Benjamin <[email protected]>
  • Loading branch information
Bob Beck authored and Boringssl LUCI CQ committed Aug 24, 2023
1 parent c6c9c38 commit 50e3051
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions util/generate_build_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,8 @@ def WriteFiles(self, files):
self.PrintVariableSection(out, 'ssl_sources',
files['ssl'] + files['ssl_internal_headers'])
self.PrintVariableSection(out, 'ssl_headers', files['ssl_headers'])
self.PrintVariableSection(out, 'pki_sources',
files['pki'] + files['pki_internal_headers'])
self.PrintVariableSection(out, 'tool_sources',
files['tool'] + files['tool_headers'])

Expand All @@ -372,7 +374,10 @@ def WriteFiles(self, files):
files['crypto_test'])
self.PrintVariableSection(out, 'crypto_test_data',
files['crypto_test_data'])
self.PrintVariableSection(out, 'pki_test_data',
files['pki_test_data'])
self.PrintVariableSection(out, 'ssl_test_sources', files['ssl_test'])
self.PrintVariableSection(out, 'pki_test_sources', files['pki_test'])


class GYP(object):
Expand Down

0 comments on commit 50e3051

Please sign in to comment.