aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2014-08-20 11:45:00 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-08-20 11:45:00 -0700
commit1915b62637bea20e1471a8a358b22e9e47a4a385 (patch)
tree029df75c507944e54a0791c9da32016b2cad7cea /gyp
parent1a17f7aeb2c735db64c977e2dd7910b00afc23a5 (diff)
Add --properties for things like gitHash that describe the current nanobench run.
--key describes the type of run (describes the line on the chart), --properties describes the run itself (describes the dot on the chart). We'll pass --properties gitHash <git hash> build_number <build number> --key ... to nanobench from the bots. And... delete a whole lot of dead code. Example: nanobench --properties gitHash foo build_number 1234 --key bar baz { "build_number" : "1234", "gitHash" : "foo", "key" : { "bar" : "baz" }, "results" : { .... Friends with https://codereview.chromium.org/491943002 BUG=skia: R=jcgregorio@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/488213002
Diffstat (limited to 'gyp')
-rw-r--r--gyp/bench.gyp1
-rw-r--r--gyp/iOSShell.gyp1
-rw-r--r--gyp/tools.gyp1
3 files changed, 0 insertions, 3 deletions
diff --git a/gyp/bench.gyp b/gyp/bench.gyp
index d53e0f7ac6..498816940a 100644
--- a/gyp/bench.gyp
+++ b/gyp/bench.gyp
@@ -12,7 +12,6 @@
'../gm/gm.cpp',
'../bench/GMBench.cpp',
'../bench/SKPBench.cpp',
- '../bench/ResultsWriter.cpp',
'../bench/nanobench.cpp',
],
'includes': [
diff --git a/gyp/iOSShell.gyp b/gyp/iOSShell.gyp
index 45f1effd5d..a0eb00ca69 100644
--- a/gyp/iOSShell.gyp
+++ b/gyp/iOSShell.gyp
@@ -20,7 +20,6 @@
'sources': [
'../bench/GMBench.cpp',
'../bench/SKPBench.cpp',
- '../bench/ResultsWriter.cpp',
'../bench/nanobench.cpp',
'../tests/skia_test.cpp',
'../tools/iOSShell.cpp',
diff --git a/gyp/tools.gyp b/gyp/tools.gyp
index d02aaca99c..66b84db66f 100644
--- a/gyp/tools.gyp
+++ b/gyp/tools.gyp
@@ -387,7 +387,6 @@
'sources': [
'../bench/BenchLogger.cpp',
'../bench/BenchLogger.h',
- '../bench/ResultsWriter.cpp',
'../tools/PictureBenchmark.cpp',
'../tools/PictureResultsWriter.h',
'../tools/bench_pictures_main.cpp',