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

Side by Side Diff: build/android/host_heartbeat.py

Issue 1571803002: [Android] Prepare build/android/ for catapult+devil. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@create-device-library-links
Patch Set: rebase Created 4 years, 11 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 unified diff | Download patch
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # 2 #
3 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 """Sends a heart beat pulse to the currently online Android devices. 7 """Sends a heart beat pulse to the currently online Android devices.
8 This heart beat lets the devices know that they are connected to a host. 8 This heart beat lets the devices know that they are connected to a host.
9 """ 9 """
10 # pylint: disable=W0702 10 # pylint: disable=W0702
11 11
12 import sys 12 import sys
13 import time 13 import time
14 14
15 import devil_chromium
15 from devil.android import device_utils 16 from devil.android import device_utils
16 17
17 PULSE_PERIOD = 20 18 PULSE_PERIOD = 20
18 19
19 def main(): 20 def main():
21 devil_chromium.Initialize()
22
20 while True: 23 while True:
21 try: 24 try:
22 devices = device_utils.DeviceUtils.HealthyDevices(blacklist=None) 25 devices = device_utils.DeviceUtils.HealthyDevices(blacklist=None)
23 for d in devices: 26 for d in devices:
24 d.RunShellCommand(['touch', '/sdcard/host_heartbeat'], 27 d.RunShellCommand(['touch', '/sdcard/host_heartbeat'],
25 check_return=True) 28 check_return=True)
26 except: 29 except:
27 # Keep the heatbeat running bypassing all errors. 30 # Keep the heatbeat running bypassing all errors.
28 pass 31 pass
29 time.sleep(PULSE_PERIOD) 32 time.sleep(PULSE_PERIOD)
30 33
31 34
32 if __name__ == '__main__': 35 if __name__ == '__main__':
33 sys.exit(main()) 36 sys.exit(main())
OLDNEW
« no previous file with comments | « build/android/gyp/util/build_utils.py ('k') | build/android/incremental_install/create_install_script.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698