Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
fd1f1096
Commit
fd1f1096
authored
Dec 15, 2011
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more tags for go/build
R=golang-dev, bradfitz CC=golang-dev
https://golang.org/cl/5490047
parent
ea51dd23
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
19 additions
and
1 deletion
+19
-1
appinit.go
src/cmd/godoc/appinit.go
+2
-0
terminal.go
src/pkg/exp/terminal/terminal.go
+2
-0
terminal_test.go
src/pkg/exp/terminal/terminal_test.go
+2
-0
util.go
src/pkg/exp/terminal/util.go
+2
-0
winfsnotify.go
src/pkg/exp/winfsnotify/winfsnotify.go
+2
-0
winfsnotify_test.go
src/pkg/exp/winfsnotify/winfsnotify_test.go
+2
-0
Makefile
src/pkg/exp/wingui/Makefile
+2
-1
gui.go
src/pkg/exp/wingui/gui.go
+2
-0
winapi.go
src/pkg/exp/wingui/winapi.go
+2
-0
zwinapi.go
src/pkg/exp/wingui/zwinapi.go
+1
-0
No files found.
src/cmd/godoc/appinit.go
View file @
fd1f1096
...
...
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build ignore
package
main
// This file replaces main.go when running godoc under app-engine.
...
...
src/pkg/exp/terminal/terminal.go
View file @
fd1f1096
...
...
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build linux
package
terminal
import
"io"
...
...
src/pkg/exp/terminal/terminal_test.go
View file @
fd1f1096
...
...
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build linux
package
terminal
import
(
...
...
src/pkg/exp/terminal/util.go
View file @
fd1f1096
...
...
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build linux
// Package terminal provides support functions for dealing with terminals, as
// commonly found on UNIX systems.
//
...
...
src/pkg/exp/winfsnotify/winfsnotify.go
View file @
fd1f1096
...
...
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build windows
// Package winfsnotify allows the user to receive
// file system event notifications on Windows.
package
winfsnotify
...
...
src/pkg/exp/winfsnotify/winfsnotify_test.go
View file @
fd1f1096
...
...
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build windows
package
winfsnotify
import
(
...
...
src/pkg/exp/wingui/Makefile
View file @
fd1f1096
...
...
@@ -18,6 +18,7 @@ GOFILES=\
include
../../../Make.cmd
zwinapi.go
:
winapi.go
$(GOROOT)
/src/pkg/syscall/mksyscall_windows.pl
$<
\
(
echo
'// +build windows'
;
\
$(GOROOT)
/src/pkg/syscall/mksyscall_windows.pl
$<
)
\
| gofmt
\
>
$@
src/pkg/exp/wingui/gui.go
View file @
fd1f1096
...
...
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build windows
package
main
import
(
...
...
src/pkg/exp/wingui/winapi.go
View file @
fd1f1096
...
...
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build windows
package
main
import
(
...
...
src/pkg/exp/wingui/zwinapi.go
View file @
fd1f1096
// +build windows
// mksyscall_windows.pl winapi.go
// MACHINE GENERATED BY THE COMMAND ABOVE; DO NOT EDIT
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment