Teach acloud how to start FVP on GCE.
Test: lunch fvp-eng && m && m acloud && acloud-dev create --local-image --avd-type fvp
Test: FVP eventually shows up as a device in adb devices
Test: lunch aosp_cf_x86_64_phone-userdebug && m droid acloud && acloud-dev delete && acloud-dev create --local-image
Test: CF eventually shows up on screen and as a device in adb devices
Bug: 156029370
Change-Id: I57a90e415422c8a1b6e318281dce34327431ac7a
diff --git a/create/create.py b/create/create.py
index 37b7351..2c2dbee 100644
--- a/create/create.py
+++ b/create/create.py
@@ -76,6 +76,9 @@
goldfish_remote_image_remote_instance.GoldfishRemoteImageRemoteInstance,
(constants.TYPE_GF, constants.IMAGE_SRC_LOCAL, constants.INSTANCE_TYPE_LOCAL):
goldfish_local_image_local_instance.GoldfishLocalImageLocalInstance,
+ # FVP types
+ (constants.TYPE_FVP, constants.IMAGE_SRC_LOCAL, constants.INSTANCE_TYPE_REMOTE):
+ local_image_remote_instance.LocalImageRemoteInstance,
}