| 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 10 matching lines...) Expand all Loading... |
| 21 from handlers import trigger_analyses | 21 from handlers import trigger_analyses |
| 22 from handlers import try_job | 22 from handlers import try_job |
| 23 from handlers import try_job_dashboard | 23 from handlers import try_job_dashboard |
| 24 from handlers import try_job_result | 24 from handlers import try_job_result |
| 25 from handlers import verify_analysis | 25 from handlers import verify_analysis |
| 26 from handlers import version | 26 from handlers import version |
| 27 from handlers.crash import crash_config | 27 from handlers.crash import crash_config |
| 28 from handlers.crash import fracas_crash | 28 from handlers.crash import fracas_crash |
| 29 from handlers.crash import fracas_dashboard | 29 from handlers.crash import fracas_dashboard |
| 30 from handlers.crash import fracas_result_feedback | 30 from handlers.crash import fracas_result_feedback |
| 31 from handlers.crash import triage_fracas_analysis |
| 31 from handlers.flake import check_flake | 32 from handlers.flake import check_flake |
| 32 | 33 |
| 33 # Default module. | 34 # Default module. |
| 34 default_web_pages_handler_mappings = [ | 35 default_web_pages_handler_mappings = [ |
| 35 ('/version', version.Version), | 36 ('/version', version.Version), |
| 36 ] | 37 ] |
| 37 default_web_application = webapp2.WSGIApplication( | 38 default_web_application = webapp2.WSGIApplication( |
| 38 default_web_pages_handler_mappings, debug=False) | 39 default_web_pages_handler_mappings, debug=False) |
| 39 | 40 |
| 40 | 41 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 waterfall_backend_web_application = webapp2.WSGIApplication( | 90 waterfall_backend_web_application = webapp2.WSGIApplication( |
| 90 waterfall_backend_web_pages_handler_mappings, debug=False) | 91 waterfall_backend_web_pages_handler_mappings, debug=False) |
| 91 | 92 |
| 92 | 93 |
| 93 # "crash-frontend" module. | 94 # "crash-frontend" module. |
| 94 crash_frontend_web_pages_handler_mappings = [ | 95 crash_frontend_web_pages_handler_mappings = [ |
| 95 ('/crash/config', crash_config.CrashConfig), | 96 ('/crash/config', crash_config.CrashConfig), |
| 96 ('/crash/fracas-dashboard', fracas_dashboard.FracasDashBoard), | 97 ('/crash/fracas-dashboard', fracas_dashboard.FracasDashBoard), |
| 97 ('/crash/fracas-result-feedback', | 98 ('/crash/fracas-result-feedback', |
| 98 fracas_result_feedback.FracasResultFeedback), | 99 fracas_result_feedback.FracasResultFeedback), |
| 100 ('/crash/triage-fracas-analysis', |
| 101 triage_fracas_analysis.TriageFracasAnalysis), |
| 99 ('/_ah/push-handlers/crash/fracas', fracas_crash.FracasCrash), | 102 ('/_ah/push-handlers/crash/fracas', fracas_crash.FracasCrash), |
| 100 ] | 103 ] |
| 101 crash_frontend_web_application = webapp2.WSGIApplication( | 104 crash_frontend_web_application = webapp2.WSGIApplication( |
| 102 crash_frontend_web_pages_handler_mappings, debug=False) | 105 crash_frontend_web_pages_handler_mappings, debug=False) |
| OLD | NEW |