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

Unified Diff: build/android/adb_install_content_shell

Issue 10905138: Add test jar generation logic for ant builds. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase Created 8 years, 3 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
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')
Yaron 2012/09/07 19:19:31 So what happens for a non-sdk build?
shashi 2012/09/07 23:31:31 This script is only upstream. On 2012/09/07 19:19:
Yaron 2012/09/10 19:58:10 Not really. The script comes down with the merge a
result = android_commands.AndroidCommands(device=device).ManagedInstall(
apk_path, False, 'org.chromium.content_shell')
print '----- Installed on %s -----' % device

Powered by Google App Engine
This is Rietveld 408576698