BUILD 648 B

1234567891011121314151617181920
  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 = ["//visibility:public"])
  5. cc_library(
  6. name = "codegen",
  7. srcs = ["codegen.cpp"],
  8. hdrs = ["codegen.h"],
  9. deps = [
  10. "@llvm-project//llvm:AllTargetsAsmParsers",
  11. "@llvm-project//llvm:AllTargetsCodeGens",
  12. "@llvm-project//llvm:Core",
  13. "@llvm-project//llvm:MC",
  14. "@llvm-project//llvm:Support",
  15. "@llvm-project//llvm:Target",
  16. "@llvm-project//llvm:TargetParser",
  17. ],
  18. )