diff options
Diffstat (limited to 'benchmarks/workloads/syscall/BUILD')
-rw-r--r-- | benchmarks/workloads/syscall/BUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/benchmarks/workloads/syscall/BUILD b/benchmarks/workloads/syscall/BUILD new file mode 100644 index 000000000..f8c43bca1 --- /dev/null +++ b/benchmarks/workloads/syscall/BUILD @@ -0,0 +1,29 @@ +load("//tools:defs.bzl", "pkg_tar", "py_library", "py_test") +load("//benchmarks:defs.bzl", "test_deps") + +package( + default_visibility = ["//benchmarks:__subpackages__"], + licenses = ["notice"], +) + +py_library( + name = "syscall", + srcs = ["__init__.py"], +) + +py_test( + name = "syscall_test", + srcs = ["syscall_test.py"], + python_version = "PY3", + deps = test_deps + [ + ":syscall", + ], +) + +pkg_tar( + name = "tar", + srcs = [ + "Dockerfile", + "syscall.c", + ], +) |