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 |