Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Unified Diff: go/src/infra/tools/device_watchdog/main.go

Issue 2226873002: Add support for building Go for Android. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Don't build on windows. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « go/src/infra/tools/device_watchdog/device_watchdog.infra_testing ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: go/src/infra/tools/device_watchdog/main.go
diff --git a/go/src/infra/tools/device_watchdog/main.go b/go/src/infra/tools/device_watchdog/main.go
new file mode 100644
index 0000000000000000000000000000000000000000..b76425ba08aeba2a95d8b1af1d74efe470bb7270
--- /dev/null
+++ b/go/src/infra/tools/device_watchdog/main.go
@@ -0,0 +1,12 @@
+// +build !windows
+
+package main
+
+import (
+ "C"
+ "fmt"
+)
+
+func main() {
+ fmt.Println("Is this thing working?")
+}
« no previous file with comments | « go/src/infra/tools/device_watchdog/device_watchdog.infra_testing ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698