Remove the + operator on dicts from .bzl files
The + operator on dicts is deprecated and will be removed from future
version of Bazel.
Change-Id: I9f3db02f13c1c56c3afc4cc94b142513f0ae3908
(cherry picked from commit 4c8be85fcf
)
This commit is contained in:
parent
66a0c4a343
commit
a10e967160
@ -137,9 +137,9 @@ _asciidoc_attrs = {
|
||||
}
|
||||
|
||||
_asciidoc = rule(
|
||||
attrs = _asciidoc_attrs + {
|
||||
attrs = dict(_asciidoc_attrs.items() + {
|
||||
"outs": attr.output_list(mandatory = True),
|
||||
},
|
||||
}.items()),
|
||||
implementation = _asciidoc_impl,
|
||||
)
|
||||
|
||||
|
@ -184,10 +184,10 @@ def _js_component(ctx):
|
||||
|
||||
js_component = rule(
|
||||
_js_component,
|
||||
attrs = _common_attrs + {
|
||||
attrs = dict(_common_attrs.items() + {
|
||||
"srcs": attr.label_list(allow_files = [".js"]),
|
||||
"license": attr.label(allow_single_file = True),
|
||||
},
|
||||
}.items()),
|
||||
outputs = {
|
||||
"zip": "%{name}.zip",
|
||||
},
|
||||
@ -195,14 +195,14 @@ js_component = rule(
|
||||
|
||||
_bower_component = rule(
|
||||
_bower_component_impl,
|
||||
attrs = _common_attrs + {
|
||||
attrs = dict(_common_attrs.items() + {
|
||||
"zipfile": attr.label(allow_single_file = [".zip"]),
|
||||
"license": attr.label(allow_single_file = True),
|
||||
"version_json": attr.label(allow_files = [".json"]),
|
||||
|
||||
# If set, define by hand, and don't regenerate this entry in bower2bazel.
|
||||
"seed": attr.bool(default = False),
|
||||
},
|
||||
}.items()),
|
||||
)
|
||||
|
||||
# TODO(hanwen): make license mandatory.
|
||||
|
Loading…
Reference in New Issue
Block a user