From b0589864dc4e267b75c2ec609985b01f4ec372eb Mon Sep 17 00:00:00 2001 From: David Crawshaw Date: Tue, 8 Jul 2014 17:04:18 -0400 Subject: [PATCH] go/build: add android to the flock LGTM=minux R=golang-codereviews, minux CC=golang-codereviews https://golang.org/cl/108450044 --- src/pkg/go/build/deps_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/go/build/deps_test.go b/src/pkg/go/build/deps_test.go index 7421e144f1..22ce8ff15a 100644 --- a/src/pkg/go/build/deps_test.go +++ b/src/pkg/go/build/deps_test.go @@ -360,7 +360,7 @@ func allowed(pkg string) map[string]bool { } var bools = []bool{false, true} -var geese = []string{"darwin", "dragonfly", "freebsd", "linux", "nacl", "netbsd", "openbsd", "plan9", "solaris", "windows"} +var geese = []string{"android", "darwin", "dragonfly", "freebsd", "linux", "nacl", "netbsd", "openbsd", "plan9", "solaris", "windows"} var goarches = []string{"386", "amd64", "arm"} type osPkg struct { -- 2.48.1