| Index: build/android/pylib/android_commands.py
|
| diff --git a/build/android/pylib/android_commands.py b/build/android/pylib/android_commands.py
|
| index 2dab2c1cfa4eaeca96cebdd2ee5595440365ebf0..4cba47a296adca741d45037c5e164ca4bfe59e97 100644
|
| --- a/build/android/pylib/android_commands.py
|
| +++ b/build/android/pylib/android_commands.py
|
| @@ -73,6 +73,13 @@ def GetAVDs():
|
| return avds
|
|
|
|
|
| +def GetEmulators():
|
| + """Backwards compatibility call to get emulators.
|
| +
|
| + Deprecated: use GetAttachedDevices(hardware=False) instead.
|
| + """
|
| + return GetAttachedDevices(hardware=False)
|
| +
|
| def GetAttachedDevices(hardware=True, emulator=True, offline=False):
|
| """Returns a list of attached, android devices and emulators.
|
|
|
|
|