Chromium Code Reviews| 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 |