Index: build/android/gyp/apk_install.py |
diff --git a/build/android/gyp/apk_install.py b/build/android/gyp/apk_install.py |
new file mode 100755 |
index 0000000000000000000000000000000000000000..35fc9d1e615e1aefdaa529959567fada7c1b47bc |
--- /dev/null |
+++ b/build/android/gyp/apk_install.py |
@@ -0,0 +1,45 @@ |
+#!/usr/bin/env python |
+# |
+# Copyright 2013 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+"""Installs an APK. |
+ |
+""" |
+ |
+import optparse |
+import os |
+import subprocess |
+import sys |
+ |
+BUILD_ANDROID_DIR = os.path.join(os.path.dirname(__file__), '..') |
+sys.path.append(BUILD_ANDROID_DIR) |
+ |
+from pylib import build_utils |
+ |
+ |
+def main(argv): |
+ parser = optparse.OptionParser() |
+ parser.add_option('--android-sdk-tools', |
+ help='Path to Android SDK tools.') |
+ parser.add_option('--apk-path', |
+ help='Path to .apk to install.') |
+ parser.add_option('--stamp', |
+ help='Path to touch on success.') |
+ options, _ = parser.parse_args() |
+ |
+ # TODO(cjhopman): Should this install to all devices/be configurable? |
+ install_cmd = [ |
+ os.path.join(options.android_sdk_tools, 'adb'), |
+ 'install', '-r', |
+ options.apk_path] |
+ |
+ subprocess.check_call(install_cmd) |
+ |
+ if options.stamp: |
+ build_utils.Touch(options.stamp) |
+ |
+ |
+if __name__ == '__main__': |
+ sys.exit(main(sys.argv)) |