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

Unified Diff: tools/testing/perf_testing/appengine/app.yaml

Issue 9706088: Some changes to performance test script. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 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: tools/testing/perf_testing/appengine/app.yaml
===================================================================
--- tools/testing/perf_testing/appengine/app.yaml (revision 5548)
+++ tools/testing/perf_testing/appengine/app.yaml (working copy)
@@ -18,6 +18,11 @@
static_files: static/\1
upload: static/(.*\.js)
+- url: /(.*\.txt)
+ mime_type: text/html
+ static_files: static/\1
+ upload: static/(.*\.txt)
+
- url: /(.*\.json)
mime_type: application/json
static_files: static/\1
@@ -46,6 +51,18 @@
static_files: static/graphs/\1
upload: static/graphs/(.*)
+- url: /data/browser-perf/macos/(.*)
+ static_files: static/data/browser-perf/macos/\1
vsm 2012/03/16 00:32:18 Do you need these for windows as well?
Emily Fortuna 2012/03/16 21:27:57 Not yet. Long story, but I don't have the windows
+ upload: static/data/browser-perf/macos/(.*)
+
+- url: /data/code-time-size/macos/(.*)
+ static_files: static/data/code-time-size/macos/\1
+ upload: static/data/code-time-size/macos/(.*)
+
+- url: /data/cl-results/macos/(.*)
+ static_files: static/data/cl-results/macos/\1
+ upload: static/data/cl-results/macos/(.*)
+
# site root
- url: /
static_files: static/index.html

Powered by Google App Engine
This is Rietveld 408576698