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

Side by Side Diff: app.yaml

Issue 19878007: Add build mailer capability to support gatekeeper_ng. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/chromium-build@master
Patch Set: Rebase to latest master Created 7 years, 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | app_test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 application: chromium-build 1 application: chromium-build
2 version: 1 2 version: 1
3 runtime: python27 3 runtime: python27
4 api_version: 1 4 api_version: 1
5 threadsafe: true 5 threadsafe: true
6 6
7 handlers: 7 handlers:
8 - url: /(.+.ico) 8 - url: /(.+.ico)
9 static_files: static/\1 9 static_files: static/\1
10 mime_type: image/x-icon 10 mime_type: image/x-icon
(...skipping 11 matching lines...) Expand all
22 script: handler.application 22 script: handler.application
23 login: admin 23 login: admin
24 24
25 - url: /restricted/merger/.* 25 - url: /restricted/merger/.*
26 script: merger.application 26 script: merger.application
27 login: admin 27 login: admin
28 28
29 - url: /buildbot/.* 29 - url: /buildbot/.*
30 script: buildlogparse.app 30 script: buildlogparse.app
31 31
32 - url: /mailer/.*
33 script: mailer.app
34 secure: always
35
32 - url: /.* 36 - url: /.*
33 script: handler.application 37 script: handler.application
34 38
35 libraries: 39 libraries:
36 - name: django 40 - name: django
37 version: 1.2 41 version: 1.2
38 - name: jinja2 42 - name: jinja2
39 version: 2.6 43 version: 2.6
40 44
41 builtins: 45 builtins:
42 - appstats: on 46 - appstats: on
43 - deferred: on 47 - deferred: on
44 - remote_api: on 48 - remote_api: on
45 49
46 skip_files: 50 skip_files:
47 - ^(.*/)?app\.yaml 51 - ^(.*/)?app\.yaml
48 - ^(.*/)?app\.yml 52 - ^(.*/)?app\.yml
49 - ^(.*/)?index\.yaml 53 - ^(.*/)?index\.yaml
50 - ^(.*/)?index\.yml 54 - ^(.*/)?index\.yml
51 - ^(.*/)?#.*# 55 - ^(.*/)?#.*#
52 - ^(.*/)?.*~ 56 - ^(.*/)?.*~
53 - ^(.*/)?.*\.py[co] 57 - ^(.*/)?.*\.py[co]
54 - ^(.*/)?.*/RCS/.* 58 - ^(.*/)?.*/RCS/.*
55 - ^(.*/)?\..* 59 - ^(.*/)?\..*
56 - ^(.*/)?.*\.bak$ 60 - ^(.*/)?.*\.bak$
57 - tests/(.*/)?.* 61 - tests/(.*/)?.*
OLDNEW
« no previous file with comments | « no previous file | app_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698