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

Unified Diff: build/android/gyp/util/build_device.py

Issue 143263017: Make api_strict_mode the default in AndroidCommands. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix more cases Created 6 years, 10 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 | « no previous file | build/android/pylib/android_commands.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/util/build_device.py
diff --git a/build/android/gyp/util/build_device.py b/build/android/gyp/util/build_device.py
index 99d3fe8cd58edc85fd1968dc106d5d8580f49028..11f6277453ba67dbf0dec15517f09c6a2721169b 100644
--- a/build/android/gyp/util/build_device.py
+++ b/build/android/gyp/util/build_device.py
@@ -26,7 +26,7 @@ class BuildDevice(object):
self.id = configuration['id']
self.description = configuration['description']
self.install_metadata = configuration['install_metadata']
- self.adb = android_commands.AndroidCommands(self.id, api_strict_mode=True)
+ self.adb = android_commands.AndroidCommands(self.id)
def RunShellCommand(self, *args, **kwargs):
return self.adb.RunShellCommand(*args, **kwargs)
@@ -53,7 +53,7 @@ class BuildDevice(object):
def GetConfigurationForDevice(id):
- adb = android_commands.AndroidCommands(id, api_strict_mode=True)
+ adb = android_commands.AndroidCommands(id)
configuration = None
has_root = False
is_online = adb.IsOnline()
« no previous file with comments | « no previous file | build/android/pylib/android_commands.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698