BUILD 512 B

1234567891011121314151617
  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 = "yaml_test_helpers",
  7. testonly = 1,
  8. srcs = ["yaml_test_helpers.cpp"],
  9. hdrs = ["yaml_test_helpers.h"],
  10. deps = [
  11. "//common:ostream",
  12. "@com_google_googletest//:gtest",
  13. "@llvm-project//llvm:Support",
  14. ],
  15. )