BUILD 752 B

1234567891011121314151617181920212223242526272829
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. load("//bazel/sh_run:rules.bzl", "glob_sh_run")
  5. load("//bazel/testing:lit.bzl", "glob_lit_tests")
  6. glob_lit_tests(
  7. data = [
  8. "//bazel/testing:merge_output",
  9. "//explorer",
  10. "@llvm-project//llvm:FileCheck",
  11. "@llvm-project//llvm:not",
  12. ],
  13. driver = "lit.cfg.py",
  14. test_file_exts = ["carbon"],
  15. )
  16. glob_sh_run(
  17. args = ["$(location //explorer)"],
  18. data = ["//explorer"],
  19. file_exts = ["carbon"],
  20. )
  21. filegroup(
  22. name = "carbon_files",
  23. srcs = glob(["**/*.carbon"]),
  24. visibility = ["//visibility:public"],
  25. )