Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 application: google.com:dartperf | 5 application: google.com:dartperf |
| 6 version: 1 | 6 version: 1 |
| 7 runtime: python | 7 runtime: python |
| 8 api_version: 1 | 8 api_version: 1 |
| 9 | 9 |
| 10 handlers: | 10 handlers: |
| 11 - url: /(.*\.html) | 11 - url: /(.*\.html) |
| 12 mime_type: text/html | 12 mime_type: text/html |
| 13 static_files: static/\1 | 13 static_files: static/\1 |
| 14 upload: static/(.*\.html) | 14 upload: static/(.*\.html) |
| 15 | 15 |
| 16 - url: /(.*\.js) | 16 - url: /(.*\.js) |
| 17 mime_type: text/javascript | 17 mime_type: text/javascript |
| 18 static_files: static/\1 | 18 static_files: static/\1 |
| 19 upload: static/(.*\.js) | 19 upload: static/(.*\.js) |
| 20 | 20 |
| 21 - url: /(.*\.txt) | |
| 22 mime_type: text/html | |
| 23 static_files: static/\1 | |
| 24 upload: static/(.*\.txt) | |
| 25 | |
| 21 - url: /(.*\.json) | 26 - url: /(.*\.json) |
| 22 mime_type: application/json | 27 mime_type: application/json |
| 23 static_files: static/\1 | 28 static_files: static/\1 |
| 24 upload: static/(.*\.json) | 29 upload: static/(.*\.json) |
| 25 | 30 |
| 26 # image files | 31 # image files |
| 27 - url: /(.*\.(bmp|gif|ico|jpeg|jpg|png)) | 32 - url: /(.*\.(bmp|gif|ico|jpeg|jpg|png)) |
| 28 static_files: static/\1 | 33 static_files: static/\1 |
| 29 upload: static/(.*\.(bmp|gif|ico|jpeg|jpg|png)) | 34 upload: static/(.*\.(bmp|gif|ico|jpeg|jpg|png)) |
| 30 | 35 |
| 31 # index files | 36 # index files |
| 32 - url: /(.+)/ | 37 - url: /(.+)/ |
| 33 static_files: static/\1/index.html | 38 static_files: static/\1/index.html |
| 34 upload: static/(.+)/index.html | 39 upload: static/(.+)/index.html |
| 35 expiration: "15m" | 40 expiration: "15m" |
| 36 | 41 |
| 37 - url: /(.+) | 42 - url: /(.+) |
| 38 static_files: static/\1/index.html | 43 static_files: static/\1/index.html |
| 39 upload: static/(.+)/index.html | 44 upload: static/(.+)/index.html |
| 40 expiration: "15m" | 45 expiration: "15m" |
| 41 | 46 |
| 42 - url: /graphs | 47 - url: /graphs |
| 43 static_dir: static/graphs | 48 static_dir: static/graphs |
| 44 | 49 |
| 45 - url: /graphs/(.*) | 50 - url: /graphs/(.*) |
| 46 static_files: static/graphs/\1 | 51 static_files: static/graphs/\1 |
| 47 upload: static/graphs/(.*) | 52 upload: static/graphs/(.*) |
| 48 | 53 |
| 54 - url: /data/browser-perf/macos/(.*) | |
| 55 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
| |
| 56 upload: static/data/browser-perf/macos/(.*) | |
| 57 | |
| 58 - url: /data/code-time-size/macos/(.*) | |
| 59 static_files: static/data/code-time-size/macos/\1 | |
| 60 upload: static/data/code-time-size/macos/(.*) | |
| 61 | |
| 62 - url: /data/cl-results/macos/(.*) | |
| 63 static_files: static/data/cl-results/macos/\1 | |
| 64 upload: static/data/cl-results/macos/(.*) | |
| 65 | |
| 49 # site root | 66 # site root |
| 50 - url: / | 67 - url: / |
| 51 static_files: static/index.html | 68 static_files: static/index.html |
| 52 upload: static/index.html | 69 upload: static/index.html |
| 53 expiration: "15m" | 70 expiration: "15m" |
| OLD | NEW |