8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 16:03:02 +01:00
firebird-mirror/extern/re2/re2_test.bzl
Adriano dos Santos Fernandes 65f003da0d Import re2 version 2019-08-01.
2019-08-11 11:10:29 -03:00

13 lines
412 B
Python

# Copyright 2009 The RE2 Authors. All Rights Reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
# Defines a Bazel macro that instantiates a native cc_test rule for an RE2 test.
def re2_test(name, deps=[], size="medium"):
native.cc_test(
name=name,
srcs=["re2/testing/%s.cc" % (name)],
deps=[":test"] + deps,
size=size,
)