Depend on //src/media/audio/bundles:services

audio_core is what serves the fuchsia.media.ProfileProvider service, so
we need to depend on it for the global_priority tests to pass on the ARM
CTS bots.

Change-Id: I0cd8475f51efe9a3baae78389cfb5c0a8a000c10
Reviewed-on: https://fuchsia-review.googlesource.com/c/third_party/vulkan-cts/+/732904
Reviewed-by: Craig Stout <cstout@google.com>
diff --git a/fuchsia/BUILD.gn b/fuchsia/BUILD.gn
index c129285..32dc3c5 100644
--- a/fuchsia/BUILD.gn
+++ b/fuchsia/BUILD.gn
@@ -156,6 +156,8 @@
       "upstream-split-cts:vulkan-cts-upstream-split",
     ]
   }
+
+  deps += [ ":base_bundle" ]
 }
 
 # To run on device:
@@ -231,3 +233,12 @@
     "//src/graphics/bundles:vulkan",
   ]
 }
+
+group("base_bundle") {
+  testonly = true
+  deps = [
+    # Must be included in base for fuchsia.media.ProfileProvider to be available for changing thread
+    # priorities.
+    "//src/media/audio/bundles:services",
+  ]
+}