BUILD 668 B

1234567891011121314151617181920212223242526
  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 = "yaml_test_helpers",
  15. testonly = 1,
  16. srcs = ["yaml_test_helpers.cpp"],
  17. hdrs = ["yaml_test_helpers.h"],
  18. deps = [
  19. "//common:ostream",
  20. "@com_google_googletest//:gtest",
  21. "@llvm-project//llvm:Support",
  22. ],
  23. )