Bazel is Google's own build tool, now publicly available in Beta. Bazel has built-in support for building both client and server software - http://bazel.io
Bazel query cookbook
Graph dependencies
This will require graphviz. Either brew install graphviz
or apt-get install graphviz
bazel query --noimplicit_deps --nohost_deps 'deps(//you-project:your-target)' --output graph > graph.in dot -Tpng < graph.in > graph.png
Read full article from Bazel Cookbook
No comments:
Post a Comment