Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorPiotr Sikora <piotr@cloudflare.com>2015-10-28 22:24:35 +0300
committerAdam Langley <agl@google.com>2015-10-28 22:26:57 +0300
commit3f5fe608c854e0a7cc598c18de034a4ba5ad7bc9 (patch)
tree22cabe6d950c77871637eefd03f4e6007ec4f0c6 /util
parent87cfcdb6dfdfda6b6073cad36636710f3517e8f5 (diff)
Support Bazel builds on other platforms.
This change causes the generated Bazel files to include the assembly file lists for other platforms. Change-Id: Ic474b6900f8c109393baac1ec9cc2d112f155a56 Reviewed-on: https://boringssl-review.googlesource.com/6390 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'util')
-rw-r--r--util/generate_build_files.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/util/generate_build_files.py b/util/generate_build_files.py
index 9254590a..856960e4 100644
--- a/util/generate_build_files.py
+++ b/util/generate_build_files.py
@@ -204,10 +204,8 @@ class Bazel(object):
self.PrintVariableSection(out, 'tool_sources', files['tool'])
for ((osname, arch), asm_files) in asm_outputs:
- if osname is not 'linux':
- continue
self.PrintVariableSection(
- out, 'crypto_sources_%s' % arch, asm_files)
+ out, 'crypto_sources_%s_%s' % (osname, arch), asm_files)
with open('BUILD.generated_tests.bzl', 'w+') as out:
out.write(self.header)