witty-crayon-22786
09/01/2015, 7:45 PMwitty-crayon-22786
09/01/2015, 7:46 PMenough-analyst-54434
09/01/2015, 7:46 PMwitty-crayon-22786
09/01/2015, 7:46 PMenough-analyst-54434
09/01/2015, 7:46 PMenough-analyst-54434
09/01/2015, 7:46 PMenough-analyst-54434
09/01/2015, 7:46 PMenough-analyst-54434
09/01/2015, 7:47 PMenough-analyst-54434
09/01/2015, 7:47 PMjolly-chef-92794
09/01/2015, 7:52 PMjolly-chef-92794
09/01/2015, 7:53 PMjvm_binary(name=‘foo’,
shading_rules=[
ShadingExclude('...'),
ShadingRelocate('...'),
],
)
rather than
jvm_binary(name=‘foo’,
shading_rules=[
Shading.Exclude('...'),
Shading.Relocate('...'),
],
)
enough-analyst-54434
09/01/2015, 7:58 PMobjects={'shading_exclude': Shading.Exclude}
in register.py?enough-analyst-54434
09/01/2015, 7:58 PMjolly-chef-92794
09/01/2015, 8:02 PMShading.Foo
rather than shading_foo
, because it mimics the look of `Duplicate`/`Skip` from jar_rules
, but I don’t want to pollute the build file aliases with more very generic looking object names (especially since exclude
already exists)enough-analyst-54434
09/01/2015, 8:02 PMenough-analyst-54434
09/01/2015, 8:02 PMenough-analyst-54434
09/01/2015, 8:03 PMenough-analyst-54434
09/01/2015, 8:03 PMenough-analyst-54434
09/01/2015, 8:03 PMenough-analyst-54434
09/01/2015, 8:03 PMjolly-chef-92794
09/01/2015, 8:04 PMexclude()
and Shading.Exclude
would both be used in jvm_binary
, just in different argsenough-analyst-54434
09/01/2015, 8:04 PMenough-analyst-54434
09/01/2015, 8:04 PMjolly-chef-92794
09/01/2015, 8:05 PMShading
object which has references to the Exclude
type, but we don’t generate docs for them in build_dictionary.html
doing it that wayjolly-chef-92794
09/01/2015, 8:06 PMenough-analyst-54434
09/01/2015, 8:06 PMenough-analyst-54434
09/01/2015, 8:06 PMenough-analyst-54434
09/01/2015, 8:07 PMenough-analyst-54434
09/01/2015, 8:07 PMjolly-chef-92794
09/01/2015, 8:07 PMobjects={’shading_relocate': Shading.Relocate,}
works fine, if that’s what you’re meaning.