BUILD 671 B

1234567891011121314151617181920212223
  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. package(default_visibility = [
  5. "//explorer:__pkg__",
  6. "//explorer/fuzzing:__pkg__",
  7. ])
  8. cc_library(
  9. name = "parse_and_execute",
  10. srcs = ["parse_and_execute.cpp"],
  11. hdrs = ["parse_and_execute.h"],
  12. deps = [
  13. "//common:check",
  14. "//common:error",
  15. "//explorer/common:trace_stream",
  16. "//explorer/interpreter:exec_program",
  17. "//explorer/syntax",
  18. "//explorer/syntax:prelude",
  19. "@llvm-project//llvm:Support",
  20. ],
  21. )