BUILD 566 B

123456789101112131415161718192021
  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/testing:lit.bzl", "glob_lit_tests")
  5. glob_lit_tests(
  6. data = [
  7. "//executable_semantics",
  8. "@llvm-project//llvm:FileCheck",
  9. "@llvm-project//llvm:not",
  10. ],
  11. driver = "lit.cfg.py",
  12. test_file_exts = ["carbon"],
  13. )
  14. filegroup(
  15. name = "carbon_files",
  16. srcs = glob(["**/*.carbon"]),
  17. visibility = ["//visibility:public"],
  18. )