mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.2 KiB
42 lines
1.2 KiB
13 years ago
|
# Copyright (c) 2011 Google Inc. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
|
||
|
"""Top-level presubmit script for GYP.
|
||
|
|
||
|
See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
|
||
|
for more details about the presubmit API built into gcl.
|
||
|
"""
|
||
|
|
||
|
|
||
|
def CheckChangeOnUpload(input_api, output_api):
|
||
|
report = []
|
||
|
report.extend(input_api.canned_checks.PanProjectChecks(
|
||
|
input_api, output_api))
|
||
|
return report
|
||
|
|
||
|
|
||
|
def CheckChangeOnCommit(input_api, output_api):
|
||
|
report = []
|
||
|
license = (
|
||
|
r'.*? Copyright \(c\) %(year)s Google Inc\. All rights reserved\.\n'
|
||
|
r'.*? Use of this source code is governed by a BSD-style license that '
|
||
|
r'can be\n'
|
||
|
r'.*? found in the LICENSE file\.\n'
|
||
|
) % {
|
||
|
'year': input_api.time.strftime('%Y'),
|
||
|
}
|
||
|
|
||
|
report.extend(input_api.canned_checks.PanProjectChecks(
|
||
|
input_api, output_api, license_header=license))
|
||
|
report.extend(input_api.canned_checks.CheckTreeIsOpen(
|
||
|
input_api, output_api,
|
||
|
'http://gyp-status.appspot.com/status',
|
||
|
'http://gyp-status.appspot.com/current'))
|
||
|
return report
|
||
|
|
||
|
|
||
|
def GetPreferredTrySlaves():
|
||
|
return ['gyp-win32', 'gyp-win64', 'gyp-linux', 'gyp-mac']
|