acloud: mkcert should be installed alone when connect to webrtc.

mkcert should install alone and should not invoke all host install process.

Bug: 204193944
Test: remove .config/acloud/mkcert folder && acloud hostcleanup && acloud-dev create --local-image
Change-Id: Ifc0103ab4d8c1ee31d3a02e799008f989c3750e9
diff --git a/setup/setup.py b/setup/setup.py
index 9da65b5..2f0dc8a 100644
--- a/setup/setup.py
+++ b/setup/setup.py
@@ -63,8 +63,10 @@
         task_queue.append(host_base_runner)
         task_queue.append(host_avd_runner)
         task_queue.append(host_cf_common_runner)
-        task_queue.append(host_mkcert_runner)
         task_queue.append(host_env_runner)
+    if args.autoconnect == constants.INS_KEY_WEBRTC:
+        task_queue.append(host_mkcert_runner)
+
     # We should do these setup tasks if specified or if no args were used.
     if args.host_base or (not args.host and not args.gcp_init):
         task_queue.append(host_base_runner)