| # Verify that we can do something with the devserver manifest | |
| genrule( | |
| name = "consume_manifest", | |
| srcs = ["//:devserver.MF"], | |
| outs = [":MANIFEST"], | |
| cmd = "cp $< $@", | |
| ) | |
| # For testing from the root workspace of this repository with bazel_integration_test. | |
| filegroup( | |
| name = "all_files", | |
| srcs = glob(["**/*"]), | |
| visibility = ["//visibility:public"], | |
| ) |