bazel-contrib / bazel-contrib/buildtools
buildozer does not sort external dependencies in deps
Open
bug
P3
pending follow up
- Dominant language
- Go
- Stars
- 1.2k
- Forks
- 471
- Avg merge
- 2d 22h
- Merged PRs (30d)
- 13
Description
Given this input:
deps = [
"@b",
"@a",
"//src/b",
"//src/a",
],
Buildozer will generate:
deps = [
"//src/a",
"//src/b",
"@b",
"@a",
],
is there a reason that the external dependencies are not sorted? This is in a cc_test rule.
Contributor guide
Assessment
This issue has not been assessed yet.