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

Unified Diff: build/android/emulator.py

Issue 10456078: Make emulator.py runnable and adjust partition size to 512 (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 7 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 | no next file » | 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
index b3259c9f9219966f0281405da8b745ea42534671..224d31ba6f41273d8673cbb88db0748d4f79aa57 100755
--- a/build/android/emulator.py
+++ b/build/android/emulator.py
@@ -152,8 +152,8 @@ class Emulator(object):
# Speed up emulator launch by 40%. Really.
'-no-boot-anim',
# The default /data size is 64M.
- # That's not enough for 4 unit test bundles and their data.
- '-partition-size', '256',
+ # That's not enough for 8 unit test bundles and their data.
+ '-partition-size', '512',
# Use a familiar name and port.
'-avd', 'buildbot',
'-port', str(port)]
@@ -247,7 +247,7 @@ class Emulator(object):
signal.signal(sig, self._ShutdownOnSignal)
def main(argv):
- Emulator().launch()
+ Emulator(True).Launch(True)
if __name__ == '__main__':
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698