File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def _doxygen_impl(ctx):
1919 outs = []
2020 for out in ctx .attr .outs :
2121 output_dir = ctx .actions .declare_directory (out )
22- outs += [ output_dir ]
22+ outs . append ( output_dir )
2323 output_group_info |= {out : depset ([output_dir ])}
2424
2525 configurations = [_expand_make_variables (conf , ctx ) for conf in ctx .attr .configurations ]
@@ -1078,6 +1078,7 @@ def doxygen(
10781078 _add_generic_configuration (configurations , "DOT_EDGE_ATTR" , dot_edge_attr )
10791079 _add_generic_configuration (configurations , "DOT_NODE_ATTR" , dot_node_attr )
10801080 _add_generic_configuration (configurations , "DOT_FONTPATH" , dot_fontpath )
1081+ _add_generic_configuration (configurations , "DOT_TRANSPARENT" , dot_transparent )
10811082 _add_generic_configuration (configurations , "CLASS_GRAPH" , class_graph )
10821083 _add_generic_configuration (configurations , "COLLABORATION_GRAPH" , collaboration_graph )
10831084 _add_generic_configuration (configurations , "GROUP_GRAPHS" , group_graphs )
You can’t perform that action at this time.
0 commit comments