-
Notifications
You must be signed in to change notification settings - Fork 4
/
PRESUBMIT.py
executable file
·28 lines (22 loc) · 954 Bytes
/
PRESUBMIT.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Documentation on PRESUBMIT.py can be found at:
# http://www.chromium.org/developers/how-tos/depottools/presubmit-scripts
EXCLUDED_PATHS = (
r"nacltoons/bindings/.*",
)
def CheckChangeOnUpload(input_api, output_api):
report = []
affected_files = input_api.AffectedFiles(include_deletes=False)
report.extend(input_api.canned_checks.PanProjectChecks(
input_api, output_api, excluded_paths=EXCLUDED_PATHS))
return report
def CheckChangeOnCommit(input_api, output_api):
report = []
report.extend(CheckChangeOnUpload(input_api, output_api))
# Disable presubmit until we fix tree status
# report.extend(input_api.canned_checks.CheckTreeIsOpen(
# input_api, output_api,
# json_url='http://naclsdk-status.appspot.com/current?format=json'))
return report