all: windows build tags
For golang/go#9306 Change-Id: Ia8778f5b371371d103c55c12606257ee7ca45fd4 Reviewed-on: https://go-review.googlesource.com/17778 Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
This commit is contained in:
parent
2fe199687c
commit
3abfce6c04
|
@ -2,7 +2,7 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build darwin linux
|
||||
// +build darwin linux windows
|
||||
|
||||
package asset
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build linux,!android darwin,!arm,!arm64
|
||||
// +build linux,!android darwin,!arm,!arm64 windows
|
||||
|
||||
package asset
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build darwin linux
|
||||
// +build darwin linux windows
|
||||
|
||||
// An app that draws a green triangle on a red background.
|
||||
//
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build !darwin,!linux
|
||||
// +build !darwin,!linux,!windows
|
||||
|
||||
package main
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build darwin linux
|
||||
// +build darwin linux windows
|
||||
|
||||
// An app that paints green if golang.org is reachable when the app first
|
||||
// starts, or red otherwise.
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build !darwin,!linux
|
||||
// +build !darwin,!linux,!windows
|
||||
|
||||
package main
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build darwin linux
|
||||
// +build darwin linux windows
|
||||
|
||||
// An app that demonstrates the sprite package.
|
||||
//
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build !darwin,!linux
|
||||
// +build !darwin,!linux,!windows
|
||||
|
||||
package main
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build darwin linux
|
||||
// +build darwin linux windows
|
||||
|
||||
// Package debug provides GL-based debugging tools for apps.
|
||||
package debug // import "golang.org/x/mobile/exp/app/debug"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build linux darwin
|
||||
// +build linux darwin windows
|
||||
|
||||
package glutil
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build darwin linux
|
||||
// +build darwin linux windows
|
||||
|
||||
package glutil // import "golang.org/x/mobile/exp/gl/glutil"
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build darwin linux
|
||||
// +build darwin linux windows
|
||||
|
||||
// Package glsprite implements a sprite Engine using OpenGL ES 2.
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue