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

Unified Diff: appengine/swarming/server/bot_archive.py

Issue 1306633002: Overhaul Android support and make Swarming bot use python-adb (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: Packaged libusb1 as a relative package to fix import paths Created 5 years, 4 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
« no previous file with comments | « no previous file | appengine/swarming/swarming_bot/adb » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/server/bot_archive.py
diff --git a/appengine/swarming/server/bot_archive.py b/appengine/swarming/server/bot_archive.py
index 29ed31646928dd81e7c131e24dfa826afd42eabb..aff2528c5fb3a404ff83b40b7873fd57ee12c3d9 100755
--- a/appengine/swarming/server/bot_archive.py
+++ b/appengine/swarming/server/bot_archive.py
@@ -144,6 +144,7 @@ FILES = (
'third_party/rsa/rsa/util.py',
'third_party/rsa/rsa/varblock.py',
'platforms/__init__.py',
+ 'platforms/android.py',
'platforms/gce.py',
'platforms/linux.py',
'platforms/osx.py',
@@ -162,6 +163,19 @@ FILES = (
'utils/tools.py',
'utils/zip_package.py',
'xsrf_client.py',
+
+ # TODO(maruel): Find a way to only include these on linux platforms but it's
+ # not that large so it is not a big deal.
+ 'adb/__init__.py',
+ 'adb/adb_commands.py',
+ 'adb/adb_protocol.py',
+ 'adb/common.py',
+ 'adb/fastboot.py',
+ 'adb/filesync_protocol.py',
+ 'adb/usb_exceptions.py',
+ 'python_libusb1/__init__.py',
+ 'python_libusb1/libusb1.py',
+ 'python_libusb1/usb1.py',
)
def resolve_symlink(path):
« no previous file with comments | « no previous file | appengine/swarming/swarming_bot/adb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698