forked from google/boringssl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apparently Bazel has deprecated the built-in licenses() command and now expects you to pull in an external package. I think I've gotten this right? Since our new BUILD.bazel file is actually referenced by the old -with-bazel branch, this new dependency also needs to work there. That is still using the legacy WORKSPACE system, but I got that working there too, I think. However, as the legacy WORKSPACE system does not consider recursive dependencies, anyone using it and updating BoringSSL will need to, in turn, update their WORKSPACE file on update. Fixed: 365824757 Change-Id: I7b49f33d628cec2ec07a47f0e31f16765d0f532a Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/71147 Commit-Queue: David Benjamin <davidben@google.com> Reviewed-by: Ben Lawson <benlawson@google.com> Reviewed-by: Adam Langley <agl@google.com>
- Loading branch information
Showing
4 changed files
with
36 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
workspace(name = "boringssl") | ||
|
||
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") | ||
|
||
http_archive( | ||
name = "rules_license", | ||
sha256 = "26d4021f6898e23b82ef953078389dd49ac2b5618ac564ade4ef87cced147b38", | ||
urls = [ | ||
"https://github.com/bazelbuild/rules_license/releases/download/1.0.0/rules_license-1.0.0.tar.gz", | ||
], | ||
) |