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

Unified Diff: build/android/pylib/output/noop_output_manager.py

Issue 2933993002: Add local results details pages.
Patch Set: Add --local-output arg which enables local results detail pages. Created 3 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
Index: build/android/pylib/output/noop_output_manager.py
diff --git a/build/android/pylib/output/noop_output_manager.py b/build/android/pylib/output/noop_output_manager.py
new file mode 100644
index 0000000000000000000000000000000000000000..b75d0cee276bdb1e0653dcec690eee59ce8c75ec
--- /dev/null
+++ b/build/android/pylib/output/noop_output_manager.py
@@ -0,0 +1,19 @@
+# Copyright 2017 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.
+
+from pylib.base import output_manager
+
+
+class NoopOutputManager(output_manager.OutputManager):
+
+ def __init__(self):
+ super(NoopOutputManager, self).__init__()
+
+ #override
+ def ArchiveAndDeleteFile(self, *args, **kwargs):
+ pass
+
+ #override
+ def _CreateArchiveJob(self, *args, **kwargs):
+ pass

Powered by Google App Engine
This is Rietveld 408576698