| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 os |
| 6 import sys |
| 5 import webapp2 | 7 import webapp2 |
| 6 | 8 |
| 9 sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir)) |
| 7 import debug_view_handler | 10 import debug_view_handler |
| 8 import image_handler | 11 import image_handler |
| 9 import main_view_handler | 12 import main_view_handler |
| 13 import rebaseline_handler |
| 10 import update_mask_handler | 14 import update_mask_handler |
| 11 | 15 |
| 12 | 16 |
| 13 application = webapp2.WSGIApplication( | 17 application = webapp2.WSGIApplication( |
| 14 [('/update_mask', update_mask_handler.UpdateMaskHandler), | 18 [('/update_mask', update_mask_handler.UpdateMaskHandler), |
| 19 ('/rebaseline', rebaseline_handler.RebaselineHandler), |
| 15 ('/debug_view', debug_view_handler.DebugViewHandler), | 20 ('/debug_view', debug_view_handler.DebugViewHandler), |
| 16 ('/image', image_handler.ImageHandler), | 21 ('/image', image_handler.ImageHandler), |
| 17 ('/', main_view_handler.MainViewHandler)], debug=True) | 22 ('/', main_view_handler.MainViewHandler)], debug=True) |
| OLD | NEW |