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

Unified Diff: build/android/install_emulator_deps.py

Issue 13543008: Fix AVD configuration and defaults based on dogfooder input. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use cmd_helper.RunCmd when output does not matter. 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 side-by-side diff with in-line comments
Download patch
Index: build/android/install_emulator_deps.py
diff --git a/build/android/install_emulator_deps.py b/build/android/install_emulator_deps.py
index bb544c21ec995098e463bb53de5ecb372035ebd1..c7445a14996d5acb15bc368aac044c3b3a3daf6e 100755
--- a/build/android/install_emulator_deps.py
+++ b/build/android/install_emulator_deps.py
@@ -13,7 +13,6 @@ install and enable KVM, if virtualization has been enabled in the BIOS.
import logging
import os
import shutil
-import subprocess
import sys
from pylib import cmd_helper
@@ -62,6 +61,7 @@ def CheckKVM():
try:
return not cmd_helper.RunCmd(['kvm-ok'])
except OSError:
+ logging.info('kvm-ok not installed')
return False
@@ -133,6 +133,8 @@ def main(argv):
else:
GetSDK()
+ logging.info('Emulator deps for ARM emulator complete.')
+
if CheckX86Image():
logging.info('system-images directory already exists.')
else:
« no previous file with comments | « build/android/avd_configs/AVD_for_Galaxy_Nexus_by_Google_x86.avd/config.ini ('k') | build/android/pylib/utils/emulator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698