Add Bazel build support for benchmark_test

Signed-off-by: xiang.zhang <xiang.zhang@verisilicon.com>
This commit is contained in:
xiang.zhang 2021-07-07 13:45:56 +08:00 committed by Kainan Cha
parent 853df36bd6
commit 68228c04d4
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
cc_test(
name = "benchmark_test",
copts = [
"-Werror", "-std=c++14"
],
srcs = [
"benchmark_test.cc"
],
deps = [
"//:tim-vx_interface"
],
)