xref: /aosp_15_r20/build/bazel/json_module_graph/transitiveDeps.jq (revision 7594170e27e0732bc44b93d1440d87a54b6ffe7c)
1*7594170eSAndroid Build Coastguard Worker# CMD: Returns the names of the transitive dependencies of the module(s) $arg, splits on ","
2*7594170eSAndroid Build Coastguard Worker
3*7594170eSAndroid Build Coastguard Workerinclude "library";
4*7594170eSAndroid Build Coastguard Worker
5*7594170eSAndroid Build Coastguard Worker(moduleGraphNoVariants | removeSelfEdges) as $m |
6*7594170eSAndroid Build Coastguard Worker  ($arg | split(",")) |
7*7594170eSAndroid Build Coastguard Worker  transitiveDeps($m)
8