summaryrefslogtreecommitdiffhomepage
path: root/WORKSPACE
diff options
context:
space:
mode:
authorGoogler <noreply@google.com>2018-04-27 10:37:02 -0700
committerAdin Scannell <ascannell@google.com>2018-04-28 01:44:26 -0400
commitd02b74a5dcfed4bfc8f2f8e545bca4d2afabb296 (patch)
tree54f95eef73aee6bacbfc736fffc631be2605ed53 /WORKSPACE
parentf70210e742919f40aa2f0934a22f1c9ba6dada62 (diff)
Check in gVisor.
PiperOrigin-RevId: 194583126 Change-Id: Ica1d8821a90f74e7e745962d71801c598c652463
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE72
1 files changed, 72 insertions, 0 deletions
diff --git a/WORKSPACE b/WORKSPACE
new file mode 100644
index 000000000..5ce224520
--- /dev/null
+++ b/WORKSPACE
@@ -0,0 +1,72 @@
+# Depend on the go bazel rules.
+http_archive(
+ name = "io_bazel_rules_go",
+ url = "https://github.com/bazelbuild/rules_go/releases/download/0.11.0/rules_go-0.11.0.tar.gz",
+ sha256 = "f70c35a8c779bb92f7521ecb5a1c6604e9c3edd431e50b6376d7497abc8ad3c1",
+)
+
+# Load go bazel rules and toolchain.
+load("@io_bazel_rules_go//go:def.bzl", "go_repository", "go_rules_dependencies", "go_register_toolchains")
+go_rules_dependencies()
+go_register_toolchains(go_version="1.10.1")
+
+# Add dependencies on external repositories.
+go_repository(
+ name = "com_github_google_go-cmp",
+ importpath = "github.com/google/go-cmp",
+ commit = "3af367b6b30c263d47e8895973edcca9a49cf029",
+)
+
+go_repository(
+ name = "com_github_google_subcommands",
+ importpath = "github.com/google/subcommands",
+ commit = "ce3d4cfc062faac7115d44e5befec8b5a08c3faa",
+)
+
+go_repository(
+ name = "com_github_google_uuid",
+ importpath = "github.com/google/uuid",
+ commit = "dec09d789f3dba190787f8b4454c7d3c936fed9e",
+)
+
+go_repository(
+ name = "com_github_kr_pty",
+ importpath = "github.com/kr/pty",
+ commit = "282ce0e5322c82529687d609ee670fac7c7d917c",
+)
+
+go_repository(
+ name = "com_github_opencontainers_runtime-spec",
+ importpath = "github.com/opencontainers/runtime-spec",
+ commit = "b2d941ef6a780da2d9982c1fb28d77ad97f54fc7",
+)
+
+go_repository(
+ name = "com_github_vishvananda_netlink",
+ importpath = "github.com/vishvananda/netlink",
+ commit = "d35d6b58e1cb692b27b94fc403170bf44058ac3e",
+)
+
+go_repository(
+ name = "com_github_vishvananda_netns",
+ importpath = "github.com/vishvananda/netns",
+ commit = "be1fbeda19366dea804f00efff2dd73a1642fdcc",
+)
+
+go_repository(
+ name = "org_golang_x_net",
+ importpath = "golang.org/x/net",
+ commit = "b3c676e531a6dc479fa1b35ac961c13f5e2b4d2e",
+)
+
+go_repository(
+ name = "org_golang_x_sys",
+ importpath = "golang.org/x/sys",
+ commit = "0dd5e194bbf5eb84a39666eb4c98a4d007e4203a",
+)
+
+go_repository(
+ name = "com_github_syndtr_gocapability",
+ importpath = "github.com/syndtr/gocapability",
+ commit = "33e07d32887e1e06b7c025f27ce52f62c7990bc0",
+)