BUILD 830 B

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