Sign in
android
/
platform
/
build
/
bazel
/
3f42bb36
/
.
/
json_module_graph
/
transitiveDeps.jq
blob: 811e1046263f643858145f21452b83a8cbf712a2 [
file
]
# CMD: Returns the names of the transitive dependencies of the module(s) $arg, splits on ","
include
"library"
;
(
moduleGraphNoVariants
|
removeSelfEdges
)
as
$m
|
(
$arg
|
split
(
","
))
|
transitiveDeps
(
$m
)