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

Unified Diff: build/android/emulator.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: Do not catch exceptions so that stack trace is revealed. Created 7 years, 9 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 | « build/android/avd.py ('k') | build/android/install_emulator_deps.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/emulator.py
diff --git a/build/android/emulator.py b/build/android/emulator.py
deleted file mode 100755
index 1c4fb55b18bfee4f6330b997cfd85552e55ddf94..0000000000000000000000000000000000000000
--- a/build/android/emulator.py
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright (c) 2012 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.
-
-"""Script to launch Android emulators.
-
-Assumes system environment ANDROID_NDK_ROOT has been set.
-"""
-
-import optparse
-import sys
-
-from pylib.utils import emulator
-
-
-def main(argv):
- option_parser = optparse.OptionParser()
- option_parser.add_option('-n', '--num', dest='emulator_count',
- help='Number of emulators to launch.',
- type='int',
- default=1)
- option_parser.add_option('-w', '--wait', dest='wait_for_boot',
- action='store_true',
- help='If set, wait for the emulators to boot.')
- options, args = option_parser.parse_args(argv)
- emulator.LaunchEmulators(options.emulator_count, options.wait_for_boot)
-
-
-if __name__ == '__main__':
- main(sys.argv)
« no previous file with comments | « build/android/avd.py ('k') | build/android/install_emulator_deps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698