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

Unified Diff: chrome_frame/PRESUBMIT.py

Issue 6386025: Disabling building of CEEE; we will be moving the code to a separate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge to head Created 9 years, 11 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 | « chrome/chrome_installer.gypi ('k') | chrome_frame/chrome_frame.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/PRESUBMIT.py
diff --git a/chrome_frame/PRESUBMIT.py b/chrome_frame/PRESUBMIT.py
deleted file mode 100644
index c3836b814b9a9a0cc3ce78d4d467e3aac6d6f69f..0000000000000000000000000000000000000000
--- a/chrome_frame/PRESUBMIT.py
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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.
-
-import sys
-
-
-def CheckChange(input_api, output_api, committing):
- # We need to change the path so that we can import ceee_presubmit
- # which lies at the root of the ceee folder. And we do it here so that
- # it doesn't pollute all the cases where we get imported yet not called.
- old_sys_path = sys.path
- ceee_path = input_api.os_path.join(input_api.PresubmitLocalPath(), '../ceee')
- try:
- sys.path = [ceee_path] + sys.path
- import ceee_presubmit
- return ceee_presubmit.CheckChange(input_api,
- output_api,
- committing,
- is_chrome_frame=True)
- finally:
- sys.path = old_sys_path
-
-
-def CheckChangeOnUpload(input_api, output_api):
- return CheckChange(input_api, output_api, False)
-
-
-def CheckChangeOnCommit(input_api, output_api):
- return CheckChange(input_api, output_api, True)
« no previous file with comments | « chrome/chrome_installer.gypi ('k') | chrome_frame/chrome_frame.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698