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

Unified Diff: perf/server/src/config/config.go

Issue 382313002: Adds tile handler to the perf server (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Removed comment Created 6 years, 5 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 | « no previous file | perf/server/src/filetilestore/filestore.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: perf/server/src/config/config.go
diff --git a/perf/server/src/config/config.go b/perf/server/src/config/config.go
index ac05c5ab98be6df51b0a2156f858a1fc341469e7..a88b80a02671e20a0564d82c1ff8bb24e90c6c5b 100644
--- a/perf/server/src/config/config.go
+++ b/perf/server/src/config/config.go
@@ -64,5 +64,33 @@ var (
ALL_DATASET_NAMES = []DatasetName{DATASET_SKP, DATASET_MICRO}
// TODO(jcgregorio) Make into a flag.
- BEGINNING_OF_TIME = QuerySince(time.Date(2014, time.June, 18, 0, 0, 0, 0, time.UTC))
+ BEGINNING_OF_TIME = QuerySince(time.Date(2014, time.June, 18, 0, 0, 0, 0, time.UTC))
+ HUMAN_READABLE_PARAM_NAMES = map[string]string{
+ "antialias": "Antialiasing",
+ "arch": "CPU Architecture",
+ "bbh": "BBH Setting",
+ "benchName": "SKP Name",
+ "builderName": "Builder Name",
+ "config": "Picture Configuration",
+ "configuration": "Build Configuration",
+ "clip": "Clip",
+ "dither": "Dither",
+ "gpu": "GPU Type",
+ "gpuConfig": "GPU Configuration",
+ "measurementType": "Measurement Type",
+ "mode": "Mode Configuration",
+ "model": "Buildbot Model",
+ "os": "OS",
+ "role": "Buildbot Role",
+ "rotate": "Rotate",
+ "scale": "Scale Setting",
+ "skpSize": "SKP Size",
+ "system": "System Type",
+ "testName": "Test Name",
+ "viewport": "Viewport Size",
+ }
+ KEY_PARAM_ORDER = map[string][]string{
+ string(DATASET_SKP): []string{"builderName", "benchName", "config", "scale", "measurementType"},
+ string(DATASET_MICRO): []string{"builderName", "testName", "config", "scale", "measurementType"},
+ }
)
« no previous file with comments | « no previous file | perf/server/src/filetilestore/filestore.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698