mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 16:03:02 +01:00
13 lines
412 B
Python
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,
|
|
)
|