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

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

Issue 12407004: Add script to download SDK, system images and create and start AVDs for testing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed frankf's comments. Created 7 years, 8 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
« no previous file with comments | « no previous file | build/android/emulator.py » ('j') | build/android/install-emulator-deps.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 """Launches Android Virtual Devices with a set configuration for testing Chrome.
7
8 The script will launch a specified number of Android Virtual Devices (AVD's).
9 """
10
11
12 import logging
13 import optparse
14 import os
15 import subprocess
16 import sys
17
18 from pylib.utils import emulator
19
20
21 def main(argv):
22 # Run script from parent directory of chrome checkout, where emulator SDK is
23 # installed by install-emulator-deps.py
24 new_cwd = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..',
frankf 2013/03/27 05:16:08 Declare this in constants.py relative to constants
navabi 2013/03/27 17:13:36 Done.
25 '..', '..')
26 # The location of the SDK used to launch the emulator
27 emulator_sdk = os.path.join(new_cwd, 'android_tools', 'sdk')
28 os.environ['ANDROID_SDK_ROOT'] = emulator_sdk
29
30 opt_parser = optparse.OptionParser(description='AVD script.')
31 opt_parser.add_option('-n', '--num', dest='emulator_count',
32 help='Number of emulators to launch.',
33 type='int', default='1')
34 opt_parser.add_option('--abi', default='arm',
35 help='Platform of emulators to launch.')
36
37 options, _ = opt_parser.parse_args(argv[1:])
38 if options.abi == 'arm':
39 options.abi = 'armeabi-v7a'
40
41 logging.basicConfig(level=logging.INFO,
42 format='# %(asctime)-15s: %(message)s')
43 logging.root.setLevel(logging.INFO)
44
45 emulator.LaunchEmulators(emulator_sdk, options.emulator_count, options.abi,
46 True)
47
48
49 if __name__ == '__main__':
50 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « no previous file | build/android/emulator.py » ('j') | build/android/install-emulator-deps.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698