BUILD 477 B

12345678910111213141516
  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. "@llvm-project//llvm:gmock",
  12. "@llvm-project//llvm:gtest",
  13. ],
  14. )