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

Unified Diff: experimental/bisect_lib/bisect_helper.py

Issue 1521503002: Update bisect_lib with the changes committed in the infra/build repo. (Closed) Base URL: https://github.com/catapult-project/catapult.git@master
Patch Set: Created 5 years 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
Index: experimental/bisect_lib/bisect_helper.py
diff --git a/experimental/bisect_lib/bisect_helper.py b/experimental/bisect_lib/bisect_helper.py
deleted file mode 100755
index 44baa7c8657ed30011366a09955e8f4632ebeb8e..0000000000000000000000000000000000000000
--- a/experimental/bisect_lib/bisect_helper.py
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/python2.7
-
-# Copyright 2015 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 json
-import os
-import sys
-
-sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir))
-
-from bisect_lib import chromium_revisions
-
-
-def main(argv):
- if argv[1] == 'query_revision_info':
- print json.dumps(chromium_revisions.revision_info(argv[2]))
- elif argv[1] == 'revision_range':
- print json.dumps(chromium_revisions.revision_range(argv[2], argv[3]))
- return 0
-
-
-if __name__ == '__main__':
- sys.exit(main(sys.argv))

Powered by Google App Engine
This is Rietveld 408576698