From a2ccfc85094ab470cd0da92290bc58a8ea092e1c Mon Sep 17 00:00:00 2001 From: Henrik Kjellander Date: Tue, 20 Dec 2016 08:44:44 +0100 Subject: [PATCH] Remove last files in tools/ This finishes the moving out of stuff into tools-webrtc, in preparation for using a Git subtree mirror of Chromium's tools/ directory, which is the planned way to get rid of downloading a full Chromium checkout. BUG=webrtc:5006 TBR=charujain@webrtc.org Review-Url: https://codereview.webrtc.org/2594553002 . Cr-Commit-Position: refs/heads/master@{#15697} --- tools/OWNERS | 3 --- tools/PRESUBMIT.py | 45 --------------------------------------------- 2 files changed, 48 deletions(-) delete mode 100644 tools/OWNERS delete mode 100644 tools/PRESUBMIT.py diff --git a/tools/OWNERS b/tools/OWNERS deleted file mode 100644 index 3a3f60ca73..0000000000 --- a/tools/OWNERS +++ /dev/null @@ -1,3 +0,0 @@ -kjellander@webrtc.org -phoglund@webrtc.org -niklas.enbom@webrtc.org diff --git a/tools/PRESUBMIT.py b/tools/PRESUBMIT.py deleted file mode 100644 index 2f7b835ba9..0000000000 --- a/tools/PRESUBMIT.py +++ /dev/null @@ -1,45 +0,0 @@ -# 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. - -def _LicenseHeader(input_api): - """Returns the license header regexp.""" - # Accept any year number from 2003 to the current year - current_year = int(input_api.time.strftime('%Y')) - allowed_years = (str(s) for s in reversed(xrange(2003, current_year + 1))) - years_re = '(' + '|'.join(allowed_years) + ')' - license_header = ( - r'.*? Copyright( \(c\))? %(year)s The WebRTC [Pp]roject [Aa]uthors\. ' - r'All [Rr]ights [Rr]eserved\.\n' - r'.*?\n' - r'.*? Use of this source code is governed by a BSD-style license\n' - r'.*? that can be found in the LICENSE file in the root of the source\n' - r'.*? tree\. An additional intellectual property rights grant can be ' - r'found\n' - r'.*? in the file PATENTS\. All contributing project authors may\n' - r'.*? be found in the AUTHORS file in the root of the source tree\.\n' - ) % { - 'year': years_re, - } - return license_header - -def _CommonChecks(input_api, output_api): - """Checks common to both upload and commit.""" - results = [] - results.extend(input_api.canned_checks.CheckLicense( - input_api, output_api, _LicenseHeader(input_api))) - return results - -def CheckChangeOnUpload(input_api, output_api): - results = [] - results.extend(_CommonChecks(input_api, output_api)) - return results - -def CheckChangeOnCommit(input_api, output_api): - results = [] - results.extend(_CommonChecks(input_api, output_api)) - return results