buildtools icon indicating copy to clipboard operation
buildtools copied to clipboard

buildozer does not sort external dependencies in deps

Open peakschris opened this issue 2 years ago • 0 comments

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.

peakschris avatar Aug 02 '23 19:08 peakschris