| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import endpoints | 5 import endpoints |
| 6 import webapp2 | 6 import webapp2 |
| 7 | 7 |
| 8 from common.pipeline_wrapper import pipeline_handlers | 8 from common.pipeline_wrapper import pipeline_handlers |
| 9 from common.pipeline_wrapper import pipeline_status_ui | 9 from common.pipeline_wrapper import pipeline_status_ui |
| 10 from findit_api import FindItApi | 10 from findit_api import FindItApi |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 waterfall_backend_web_pages_handler_mappings = [ | 79 waterfall_backend_web_pages_handler_mappings = [ |
| 80 ('/waterfall/trigger-analyses', trigger_analyses.TriggerAnalyses), | 80 ('/waterfall/trigger-analyses', trigger_analyses.TriggerAnalyses), |
| 81 ] | 81 ] |
| 82 waterfall_backend_web_application = webapp2.WSGIApplication( | 82 waterfall_backend_web_application = webapp2.WSGIApplication( |
| 83 waterfall_backend_web_pages_handler_mappings, debug=False) | 83 waterfall_backend_web_pages_handler_mappings, debug=False) |
| 84 | 84 |
| 85 | 85 |
| 86 # "crash-frontend" module. | 86 # "crash-frontend" module. |
| 87 crash_frontend_web_pages_handler_mappings = [ | 87 crash_frontend_web_pages_handler_mappings = [ |
| 88 ('/crash/config', crash_config.CrashConfig), | 88 ('/crash/config', crash_config.CrashConfig), |
| 89 ('/crash/fracas', fracas_crash.FracasCrash), | 89 ('/_ah/push-handlers/crash/fracas', fracas_crash.FracasCrash), |
| 90 ] | 90 ] |
| 91 crash_frontend_web_application = webapp2.WSGIApplication( | 91 crash_frontend_web_application = webapp2.WSGIApplication( |
| 92 crash_frontend_web_pages_handler_mappings, debug=False) | 92 crash_frontend_web_pages_handler_mappings, debug=False) |
| OLD | NEW |