Add vim3 to display_envs

Introduce vim3 to environments.gni to unblock antlion testing on vim3.

Fixed: b/299339460
Change-Id: If40a43c1db49adeedb36aea460b203c8de4abab6
Reviewed-on: https://fuchsia-review.googlesource.com/c/antlion/+/916220
Commit-Queue: Sam Balana <sbalana@google.com>
Reviewed-by: Anthonio Saw <anthonio@google.com>
Reviewed-by: Patrick Lu <patricklu@google.com>
diff --git a/environments.gni b/environments.gni
index 2bdfb53..8242226 100644
--- a/environments.gni
+++ b/environments.gni
@@ -26,6 +26,14 @@
   tags = [ "antlion" ]
 }
 
+antlion_vim3_env = {
+  dimensions = {
+    device_type = "Vim3"
+    pool = "fuchsia.tests.connectivity"
+  }
+  tags = [ "antlion" ]
+}
+
 astro_ap_env = {
   dimensions = {
     access_points = "1"
@@ -116,26 +124,60 @@
   tags = [ "antlion" ]
 }
 
+vim3_ap_env = {
+  dimensions = {
+    access_points = "1"
+    device_type = "Vim3"
+    pool = "fuchsia.tests.connectivity"
+  }
+  tags = [ "antlion" ]
+}
+
+vim3_ap_iperf_env = {
+  dimensions = {
+    access_points = "1"
+    device_type = "Vim3"
+    iperf_servers = "1"
+    pool = "fuchsia.tests.connectivity"
+  }
+  tags = [ "antlion" ]
+}
+
+vim3_ap_iperf_attenuator_env = {
+  dimensions = {
+    access_points = "1"
+    attenuators = "1"
+    device_type = "Vim3"
+    iperf_servers = "1"
+    pool = "fuchsia.tests.connectivity"
+  }
+  tags = [ "antlion" ]
+}
+
 display_envs = [
   antlion_astro_env,
   antlion_sherlock_env,
   antlion_nelson_env,
+  antlion_vim3_env,
 ]
 
 display_ap_envs = [
   astro_ap_env,
   sherlock_ap_env,
   nelson_ap_env,
+  vim3_ap_env,
 ]
 
 display_ap_iperf_envs = [
   astro_ap_iperf_env,
   sherlock_ap_iperf_env,
   nelson_ap_iperf_env,
+  vim3_ap_iperf_env,
 ]
 
 display_ap_iperf_attenuator_envs = [
   astro_ap_iperf_attenuator_env,
   sherlock_ap_iperf_attenuator_env,
   nelson_ap_iperf_attenuator_env,
+  vim3_ap_iperf_attenuator_env,
 ]