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

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

Issue 1576153002: Remove the Dromaeo and TodoMVC samples. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 | « tests/html/html.status ('k') | tools/testing/perf_testing/calc_and_send_mail.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/perf_testing/appengine/app.yaml
diff --git a/tools/testing/perf_testing/appengine/app.yaml b/tools/testing/perf_testing/appengine/app.yaml
deleted file mode 100644
index 3fd88320f7731174ba53ef9c889f1a714de747f2..0000000000000000000000000000000000000000
--- a/tools/testing/perf_testing/appengine/app.yaml
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-# for details. All rights reserved. Use of this source code is governed by a
-# BSD-style license that can be found in the LICENSE file.
-
-application: google.com:dartperf
-version: 1
-runtime: python
-api_version: 1
-
-handlers:
-- url: /(.*\.html)
- mime_type: text/html
- static_files: static/\1
- upload: static/(.*\.html)
-
-- url: /(.*\.js)
- mime_type: text/javascript
- 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
- upload: static/(.*\.json)
-
-# image files
-- url: /(.*\.(bmp|gif|ico|jpeg|jpg|png))
- static_files: static/\1
- upload: static/(.*\.(bmp|gif|ico|jpeg|jpg|png))
-
-# index files
-- url: /(.+)/
- static_files: static/\1/index.html
- upload: static/(.+)/index.html
- expiration: "15m"
-
-- url: /(.+)
- static_files: static/\1/index.html
- upload: static/(.+)/index.html
- expiration: "15m"
-
-- url: /graphs
- static_dir: static/graphs
-
-- url: /graphs/(.*)
- static_files: static/graphs/\1
- upload: static/graphs/(.*)
-
-- url: /data/browser-perf/macos/(.*)
- static_files: static/data/browser-perf/macos/\1
- 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
- upload: static/index.html
- expiration: "15m"
« no previous file with comments | « tests/html/html.status ('k') | tools/testing/perf_testing/calc_and_send_mail.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698