e415864a32
Add the GN trybots to the default set and also set them to be the only bots to run if a CL contains only BUILD.gn changes. Update Python exclusions in general and fix a few of the lint warnings. The ones in python_charts needs to be disabled since those variables are actually used when passed via vars() to the template. BUG=None TEST=git cl presubmit with the following cases: A CL with two .gyp changes. A CL with no changes in .gyp* files. R=niklas.enbom@webrtc.org, phoglund@webrtc.org Review URL: https://webrtc-codereview.appspot.com/18719004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6834 4adac7df-926f-26a2-2b94-8c16560cd09d
22 lines
789 B
Python
22 lines
789 B
Python
#!/usr/bin/env python
|
|
#-*- coding: utf-8 -*-
|
|
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license
|
|
# that can be found in the LICENSE file in the root of the source
|
|
# tree. An additional intellectual property rights grant can be found
|
|
# in the file PATENTS. All contributing project authors may
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
"""Connects all URLs with their respective handlers."""
|
|
|
|
import webapp2
|
|
|
|
import add_coverage_data
|
|
import dashboard
|
|
|
|
app = webapp2.WSGIApplication([('/', dashboard.ShowDashboard),
|
|
('/add_coverage_data',
|
|
add_coverage_data.AddCoverageData)],
|
|
debug=True)
|