xref: /aosp_15_r20/external/regex-re2/re2_test.bzl (revision ccdc9c3e24c519bfa4832a66aa2e83a52c19f295)
1# Copyright 2009 The RE2 Authors.  All Rights Reserved.
2# Use of this source code is governed by a BSD-style
3# license that can be found in the LICENSE file.
4
5# Defines a Bazel macro that instantiates a native cc_test rule for an RE2 test.
6def re2_test(name, deps=[], size="medium"):
7  native.cc_test(
8      name=name,
9      srcs=["re2/testing/%s.cc" % (name)],
10      deps=[":test"] + deps,
11      size=size,
12  )
13