BUILD 876 B

123456789101112131415161718192021222324252627282930313233343536
  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 = ["//visibility:public"])
  6. cc_library(
  7. name = "index_base",
  8. hdrs = ["index_base.h"],
  9. deps = [
  10. "//common:ostream",
  11. "@llvm-project//llvm:Support",
  12. ],
  13. )
  14. cc_library(
  15. name = "pretty_stack_trace_function",
  16. hdrs = ["pretty_stack_trace_function.h"],
  17. deps = [
  18. "@llvm-project//llvm:Support",
  19. ],
  20. )
  21. cc_library(
  22. name = "yaml_test_helpers",
  23. testonly = 1,
  24. srcs = ["yaml_test_helpers.cpp"],
  25. hdrs = ["yaml_test_helpers.h"],
  26. deps = [
  27. "//common:ostream",
  28. "@com_google_googletest//:gtest",
  29. "@llvm-project//llvm:Support",
  30. ],
  31. )