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

Unified Diff: fuzzer/go/config/config.go

Issue 911143003: skeleton for fuzzer; contains makefile and front end server (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 5 years, 10 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
Index: fuzzer/go/config/config.go
diff --git a/fuzzer/go/config/config.go b/fuzzer/go/config/config.go
new file mode 100644
index 0000000000000000000000000000000000000000..e4bf075330a22fc14191d3cac7c14f1ad82de301
--- /dev/null
+++ b/fuzzer/go/config/config.go
@@ -0,0 +1,10 @@
+package config
+
+type FrontEndConfig struct {
jcgregorio 2015/02/11 12:49:11 This is already in the the 'config' package so you
humper 2015/02/11 13:17:50 Done.
+ Port string
+ ResourcePath string
+}
+
+var FuzzerConfig struct {
jcgregorio 2015/02/11 12:49:11 Same here. type Fuzzer struct {
humper 2015/02/11 13:17:50 Done.
+ FrontEnd FrontEndConfig
+}

Powered by Google App Engine
This is Rietveld 408576698