diff options
author | Zach Koopmans <zkoopmans@google.com> | 2019-12-11 15:38:07 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-12-11 15:51:41 -0800 |
commit | e2e3b38460096a00cabe9041177e729c54e07b3b (patch) | |
tree | b42a9939e51f017a205cb1f6ac8a4d93c5c081c4 /benchmarks/harness/machine_producers/BUILD | |
parent | e690651c67d38c2bd8532ddabd2967ebeef58c7e (diff) |
GCloudProducer: tunnel_dispatch, mock_recorder, and machine.
Work to import GCloudProducer, written in gerrit, which is
too large to do in one CL. GCloudProducer sets up gcloud
instances to run benchmark workloads.
Included are:
- gcloud_mock_recorder - used to Mock GCloudProducer
- tunnel_dispatcher - updates to this module to bring it in line
with the style guide
- machine - updates to this module to bring it in line with the
style guide
All changes are independent of the rest of the changes, and
should "just build".
PiperOrigin-RevId: 285076423
Diffstat (limited to 'benchmarks/harness/machine_producers/BUILD')
-rw-r--r-- | benchmarks/harness/machine_producers/BUILD | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/benchmarks/harness/machine_producers/BUILD b/benchmarks/harness/machine_producers/BUILD index 5b2228e01..a48da02a1 100644 --- a/benchmarks/harness/machine_producers/BUILD +++ b/benchmarks/harness/machine_producers/BUILD @@ -33,3 +33,8 @@ py_library( requirement("PyYAML", False), ], ) + +py_library( + name = "gcloud_mock_recorder", + srcs = ["gcloud_mock_recorder.py"], +) |