# HG changeset patch # User Gilles Duboscq # Date 1422456373 -3600 # Node ID 258b3658845a5ee864838c95e98c9fa694d01a64 # Parent 81e464d4513765c70c5b00b8312da6e631096d70 mx: Show annotation processor edges in projectgraph diff -r 81e464d45137 -r 258b3658845a mxtool/mx.py --- a/mxtool/mx.py Tue Feb 03 14:37:10 2015 +0100 +++ b/mxtool/mx.py Wed Jan 28 15:46:13 2015 +0100 @@ -3440,7 +3440,10 @@ print 'node [shape=rect];' for p in projects(): for dep in p.canonical_deps(): - print '"' + p.name + '"->"' + dep + '"' + print '"' + p.name + '"->"' + dep + '";' + if hasattr(p, '_declaredAnnotationProcessors'): + for ap in p._declaredAnnotationProcessors: + print '"' + p.name + '"->"' + ap + '" [style="dashed"];' print '}' def _source_locator_memento(deps):