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 ff23b97514529fef27f4df70fa1b742d26ee521b..7a7c7430355029ad7ba85d18811e059f5e1769aa 100644 |
--- a/build/android/gyp/util/build_device.py |
+++ b/build/android/gyp/util/build_device.py |
@@ -52,9 +52,9 @@ class BuildDevice(object): |
"""Gets the metadata on the device for the apk_package apk.""" |
# Matches lines like: |
# -rw-r--r-- system system 7376582 2013-04-19 16:34 \ |
- # org.chromium.chrome.shell.apk |
+ # org.chromium.chrome.apk |
# -rw-r--r-- system system 7376582 2013-04-19 16:34 \ |
- # org.chromium.chrome.shell-1.apk |
+ # org.chromium.chrome-1.apk |
apk_matcher = lambda s: re.match('.*%s(-[0-9]*)?.apk$' % apk_package, s) |
matches = filter(apk_matcher, self.install_metadata) |
return matches[0] if matches else None |