Remove the deprecated, now no-op, "data" transition

This only used to have effect for C++ LIPO, which has been
removed from Blaze.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=206617307
This commit is contained in:
jianglai 2018-07-30 11:31:24 -07:00
parent 0e62270f54
commit 3941249dfe

View file

@ -247,7 +247,7 @@ zip_file = rule(
attrs = {
"out": attr.output(mandatory = True),
"srcs": attr.label_list(allow_files = True),
"data": attr.label_list(cfg = "data", allow_files = True),
"data": attr.label_list(allow_files = True),
"deps": attr.label_list(providers = ["zip_file"]),
"exclude": attr.string_list(),
"mappings": attr.string_dict(),