android13/build/bazel/json_module_graph/directDeps.jq

5 lines
174 B
Plaintext
Raw Normal View History

2024-06-22 08:45:49 -04:00
# CMD: Returns the names of the direct dependencies of the module named $arg
include "library";
[.[] | select(.Name == $arg) | .Deps | map(.Name)] | flatten | unique | sort