summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-03 16:02:27 +0000
committerjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-03 16:02:27 +0000
commite175c528a9f467b9bff9566ca58344ec0f66354b (patch)
tree318cfd2b6b68a48b5045b54405bd3bb9305d5b8c
parent1f3c58b16105661abe195847bb51017775fdd3cd (diff)
downloadchromium_src-e175c528a9f467b9bff9566ca58344ec0f66354b.zip
chromium_src-e175c528a9f467b9bff9566ca58344ec0f66354b.tar.gz
chromium_src-e175c528a9f467b9bff9566ca58344ec0f66354b.tar.bz2
Remove warning about GRD changes which is no longer required.
BUG=none TEST=none Review URL: http://codereview.chromium.org/3073020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54756 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-xchrome/app/PRESUBMIT.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/chrome/app/PRESUBMIT.py b/chrome/app/PRESUBMIT.py
deleted file mode 100755
index 30eb75e..0000000
--- a/chrome/app/PRESUBMIT.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright (c) 2010 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.
-
-"""Notify people of GRD changes."""
-
-GRD_FILE_ENDING = 'resources.grd'
-
-def CheckChangeOnCommit(input_api, output_api):
- results = []
- for f in input_api.AffectedFiles():
- if f.LocalPath().endswith(GRD_FILE_ENDING):
- results = [ output_api.PresubmitPromptWarning('Your CL includes a GRD '
- 'change. Please notify the sheriff BEFORE landing.\nSee this page '
- 'for more information:\n '
- 'http://dev.chromium.org/developers/tree-sheriffs/sheriff-details-'
- 'chromium') ]
- break
- return results