BUILD 534 B

123456789101112131415161718
  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", "cc_test")
  5. package(default_visibility = ["//visibility:public"])
  6. cc_library(
  7. name = "yaml_test_helpers",
  8. testonly = 1,
  9. srcs = ["yaml_test_helpers.cpp"],
  10. hdrs = ["yaml_test_helpers.h"],
  11. deps = [
  12. "@llvm-project//llvm:gmock",
  13. "@llvm-project//llvm:gtest",
  14. ],
  15. )