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

Side by Side Diff: fuzzer/go/config/config.go

Issue 1144163010: Getting started on the fuzzer web front end. (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Update startsWith polyfill Created 5 years, 6 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 unified diff | Download patch
« no previous file with comments | « fuzzer/fuzzer.toml ('k') | fuzzer/go/frontend/main.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 package config 1 package config
2 2
3 type Common struct { 3 type Common struct {
4 ResourcePath string 4 ResourcePath string
5 FuzzOutputGSBucket string 5 FuzzOutputGSBucket string
6 DoOAuth bool 6 DoOAuth bool
7 OAuthCacheFile string 7 OAuthCacheFile string
8 OAuthClientSecretFile string 8 OAuthClientSecretFile string
9 Local bool
9 } 10 }
10 11
11 type FrontEnd struct { 12 type FrontEnd struct {
12 Port string 13 Port string
13 GraphiteServer string 14 GraphiteServer string
15 RedirectURL string
16 ForceLogin bool
14 } 17 }
15 18
16 type Fuzzer struct { 19 type Fuzzer struct {
17 CachePath string 20 CachePath string
18 Indentation int 21 Indentation int
19 SkiaSourceDir string 22 SkiaSourceDir string
20 } 23 }
21 24
22 type Generator struct { 25 type Generator struct {
23 Weight int 26 Weight int
24 Debug bool 27 Debug bool
25 ExtraParams map[string]string 28 ExtraParams map[string]string
26 } 29 }
27 30
28 var Config struct { 31 var Config struct {
29 Common Common 32 Common Common
30 FrontEnd FrontEnd 33 FrontEnd FrontEnd
31 Fuzzer Fuzzer 34 Fuzzer Fuzzer
32 Generators map[string]Generator 35 Generators map[string]Generator
33 } 36 }
OLDNEW
« no previous file with comments | « fuzzer/fuzzer.toml ('k') | fuzzer/go/frontend/main.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698