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

Unified Diff: scripts/slave/recipe_modules/webrtc/api.py

Issue 2443113003: Make .pyc cleaning optional in clean_local_files. (Closed)
Patch Set: Fixed expectations Created 4 years, 2 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: scripts/slave/recipe_modules/webrtc/api.py
diff --git a/scripts/slave/recipe_modules/webrtc/api.py b/scripts/slave/recipe_modules/webrtc/api.py
index e8d738820ecb91dbfb14570adc779c574920e8e2..0772fc1974e6637b7cac4ef51aa4d06d70b48b97 100644
--- a/scripts/slave/recipe_modules/webrtc/api.py
+++ b/scripts/slave/recipe_modules/webrtc/api.py
@@ -362,7 +362,7 @@ class WebRTCApi(recipe_api.RecipeApi):
def cleanup(self):
self.clean_test_output()
if self.m.chromium.c.TARGET_PLATFORM == 'android':
- self.m.chromium_android.clean_local_files()
+ self.m.chromium_android.clean_local_files(clean_pyc_files=False)
else:
self.m.chromium.cleanup_temp()
if self.c.use_isolate:

Powered by Google App Engine
This is Rietveld 408576698