• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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