BUILD 715 B

12345678910111213141516171819202122
  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/cc_rules:defs.bzl", "cc_library")
  5. cc_library(
  6. name = "clang_cc1",
  7. srcs = ["clang_cc1.cpp"],
  8. hdrs = ["clang_cc1.h"],
  9. visibility = ["//visibility:public"],
  10. deps = [
  11. "//common:check",
  12. "//toolchain/base:install_paths",
  13. "@llvm-project//clang:basic",
  14. "@llvm-project//clang:codegen",
  15. "@llvm-project//clang:frontend",
  16. "@llvm-project//clang:frontend_tool",
  17. "@llvm-project//clang:serialization",
  18. "@llvm-project//llvm:Support",
  19. ],
  20. )