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

Unified Diff: blimp/tools/PRESUBMIT.py

Issue 2626423004: Remove all //blimp code. (Closed)
Patch Set: One last(?) `git merge` for good measure. Created 3 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 | « blimp/tools/Dockerfile.base ('k') | blimp/tools/create-bundle.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/tools/PRESUBMIT.py
diff --git a/blimp/tools/PRESUBMIT.py b/blimp/tools/PRESUBMIT.py
deleted file mode 100644
index b162d96b25b4c859b1b00abcfddf986b2f35ebcb..0000000000000000000000000000000000000000
--- a/blimp/tools/PRESUBMIT.py
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2016 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.
-
-"""Presubmit for blimp/tools."""
-
-
-def CommonChecks(input_api, output_api):
- """Presubmit checks run on both upload and commit.
-
- This is currently limited to pylint.
- """
- checks = []
-
- blimp_tools_dir = input_api.PresubmitLocalPath()
-
- def J(*dirs):
- """Returns a path relative to presubmit directory."""
- return input_api.os_path.join(blimp_tools_dir, *dirs)
-
- checks.extend(input_api.canned_checks.GetPylint(
- input_api,
- output_api,
- pylintrc='pylintrc',
- extra_paths_list=[
- J(),
- J('..', '..', 'build', 'android'),
- J('..', '..', 'third_party', 'catapult', 'devil')
- ]))
-
- return input_api.RunTests(checks, False)
-
-
-def CheckChangeOnUpload(input_api, output_api):
- """Presubmit checks on CL upload."""
- return CommonChecks(input_api, output_api)
-
-
-def CheckChangeOnCommit(input_api, output_api):
- """Presubmit checks on commit."""
- return CommonChecks(input_api, output_api)
-
« no previous file with comments | « blimp/tools/Dockerfile.base ('k') | blimp/tools/create-bundle.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698