aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/avl/BUILD
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2018-02-08 10:04:08 -0800
committerGravatar Vijay Pai <vpai@google.com>2018-02-08 10:04:08 -0800
commit8f4fbb1c550c99e25f42ceafec3af92b34279db5 (patch)
tree2b00b4989eaea6ba6958a6bfafb295ba172c47ca /test/core/avl/BUILD
parent9494a9dacf1b1a37be7e0603929eaa3c0bd66213 (diff)
Move avl to its own directory and rename it to grpc_avl
Diffstat (limited to 'test/core/avl/BUILD')
-rw-r--r--test/core/avl/BUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/core/avl/BUILD b/test/core/avl/BUILD
new file mode 100644
index 0000000000..ded009071c
--- /dev/null
+++ b/test/core/avl/BUILD
@@ -0,0 +1,30 @@
+# Copyright 2018 gRPC authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+load("//bazel:grpc_build_system.bzl", "grpc_cc_library", "grpc_cc_test", "grpc_cc_binary", "grpc_package")
+
+licenses(["notice"]) # Apache v2
+
+grpc_package(name = "test/core/avl")
+
+grpc_cc_test(
+ name = "avl_test",
+ srcs = ["avl_test.cc"],
+ language = "C++",
+ deps = [
+ "//:gpr",
+ "//:grpc_base",
+ "//test/core/util:gpr_test_util",
+ ],
+)