BUILD 936 B

123456789101112131415161718192021222324252627282930313233
  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("@rules_cc//cc:defs.bzl", "cc_library")
  5. package(default_visibility = ["//executable_semantics:__subpackages__"])
  6. # TODO: It may be helpful to break this apart.
  7. cc_library(
  8. name = "interpreter",
  9. srcs = [
  10. "action.cpp",
  11. "interpreter.cpp",
  12. "typecheck.cpp",
  13. "value.cpp",
  14. ],
  15. hdrs = [
  16. "action.h",
  17. "assoc_list.h",
  18. "cons_list.h",
  19. "interpreter.h",
  20. "typecheck.h",
  21. "value.h",
  22. ],
  23. deps = [
  24. "//executable_semantics/ast:declaration",
  25. "//executable_semantics/ast:expression",
  26. "//executable_semantics/ast:function_definition",
  27. "//executable_semantics/ast:member",
  28. "//executable_semantics/ast:statement",
  29. ],
  30. )