...

Text file src/edge-infra.dev/hack/datasync/BUILD.bazel

Documentation: edge-infra.dev/hack/datasync

     1load("@rules_python//python:defs.bzl", "py_binary", "py_library")
     2
     3py_library(
     4    name = "datasync",
     5    srcs = [
     6        "speedHelper.py",
     7        "speedTest.py",
     8    ],
     9    visibility = ["//:__subpackages__"],
    10    deps = ["@pip_pyyaml//:pkg"],
    11)
    12
    13py_binary(
    14    name = "speedTest",
    15    srcs = ["speedTest.py"],
    16    visibility = ["//:__subpackages__"],
    17    deps = ["@pip//pyyaml"],
    18)

View as plain text