diff options
author | Zach Koopmans <zkoopmans@google.com> | 2020-03-30 13:04:44 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-03-30 13:05:45 -0700 |
commit | e36eccc4b18676e2cb441380d0e4e46f038f638e (patch) | |
tree | 98851303da36213210318fe583b7d8b4091479be /tools/bigquery/BUILD | |
parent | 3fac85da951f9f56d0232718ea7584250cf11f31 (diff) |
BigQuery schema for benchmark-tools dashboard.
PiperOrigin-RevId: 303805784
Diffstat (limited to 'tools/bigquery/BUILD')
-rw-r--r-- | tools/bigquery/BUILD | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/bigquery/BUILD b/tools/bigquery/BUILD new file mode 100644 index 000000000..5748fb390 --- /dev/null +++ b/tools/bigquery/BUILD @@ -0,0 +1,10 @@ +load("//tools:defs.bzl", "go_library") + +package(licenses = ["notice"]) + +go_library( + name = "bigquery", + testonly = 1, + srcs = ["bigquery.go"], + deps = ["@com_google_cloud_go_bigquery//:go_default_library"], +) |