Skip to content

Commit

Permalink
Don't define BORINGSSL_SHARED_LIBRARY in generated bzl file.
Browse files Browse the repository at this point in the history
https://boringssl-review.googlesource.com/c/12360/ made us define
BORINGSSL_SHARED_LIBRARY when building tests via Bazel. The test has now
been moved to crypto_test, where the flags are more easily under the
control of the consumer.

Change-Id: If237efca219a1f03d64dc801cc1d585556bf2d1d
Reviewed-on: https://boringssl-review.googlesource.com/16987
Reviewed-by: David Benjamin <[email protected]>
  • Loading branch information
davidben committed Jun 9, 2017
1 parent 656aa9a commit c40e183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/generate_build_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def WriteFiles(self, files, asm_outputs):
out.write(' "%s",\n' % arg)
out.write(' ],\n')

out.write(' copts = copts + ["-DBORINGSSL_SHARED_LIBRARY"],\n')
out.write(' copts = copts,\n')

if len(data_files) > 0:
out.write(' data = [\n')
Expand Down

0 comments on commit c40e183

Please sign in to comment.