BUILD 749 B

12345678910111213141516171819202122232425
  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("//testing/file_test:rules.bzl", "file_test")
  5. package(default_visibility = ["//visibility:public"])
  6. file_test(
  7. name = "file_test",
  8. srcs = ["file_test.cpp"],
  9. tests = [
  10. "//toolchain/check:testdata",
  11. "//toolchain/codegen:testdata",
  12. "//toolchain/driver:testdata",
  13. "//toolchain/lex:testdata",
  14. "//toolchain/lower:testdata",
  15. "//toolchain/parse:testdata",
  16. ],
  17. deps = [
  18. "//testing/file_test:file_test_base",
  19. "//toolchain/driver",
  20. "@llvm-project//llvm:Support",
  21. ],
  22. )