Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1432)

Unified Diff: chrome/app/PRESUBMIT.py

Issue 3073020: Remove warning about GRD changes which is no longer required. (Closed)
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/PRESUBMIT.py
diff --git a/chrome/app/PRESUBMIT.py b/chrome/app/PRESUBMIT.py
deleted file mode 100755
index 30eb75e12aeaf5ba769c023cbbb65a6ad2998d48..0000000000000000000000000000000000000000
--- 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698