| Index: build/android/pylib/device/device_utils.py
|
| diff --git a/build/android/pylib/device/device_utils.py b/build/android/pylib/device/device_utils.py
|
| index 558461fc15453165e6a368d0fb6f3fa8e38e99c2..23b8894d815fd1dab5d228ff887acca2ae90fec5 100644
|
| --- a/build/android/pylib/device/device_utils.py
|
| +++ b/build/android/pylib/device/device_utils.py
|
| @@ -1374,6 +1374,7 @@ class DeviceUtils(object):
|
| 240: 'hdpi',
|
| 320: 'xhdpi',
|
| 480: 'xxhdpi',
|
| + 640: 'xxxhdpi',
|
| }
|
| dpi = int(self.GetProp('ro.sf.lcd_density', cache=True))
|
| return DPI_TO_DENSITY.get(dpi, 'tvdpi')
|
| @@ -1717,4 +1718,4 @@ class DeviceUtils(object):
|
| return False
|
|
|
| return [cls(adb) for adb in adb_wrapper.AdbWrapper.Devices()
|
| - if not blacklisted(adb)]
|
| + if not blacklisted(adb)]
|
|
|