| Index: build/android/adb_install_content_shell
|
| diff --git a/build/android/adb_install_content_shell b/build/android/adb_install_content_shell
|
| index fd883cc5ba13b20303f15f10084d5d475aaed0ba..1af1df4110f905027778d9ddb6760bf327213793 100755
|
| --- a/build/android/adb_install_content_shell
|
| +++ b/build/android/adb_install_content_shell
|
| @@ -11,12 +11,13 @@ import sys
|
|
|
| from pylib import android_commands
|
| from pylib import test_options_parser
|
| +from pylib import constants
|
|
|
|
|
| def InstallContentShell(device, build_type):
|
| apk_path = os.path.join(os.environ['CHROME_SRC'],
|
| 'out', build_type,
|
| - 'content_shell', 'ContentShell-debug.apk')
|
| + constants.SDK_BUILD_APKS_DIR, 'ContentShell-debug.apk')
|
| result = android_commands.AndroidCommands(device=device).ManagedInstall(
|
| apk_path, False, 'org.chromium.content_shell')
|
| print '----- Installed on %s -----' % device
|
|
|