[GH] Disable compose-runtime-tracing in playground

compose:runtime:runtime-tracing currently depends on a perfetto
prebuilt, which Gradle currently expects an .aar available locally to
unzip. Since it will take some time to make this logic compatible with
GCS, this CL temporarily stops building compose:runtime:runtime-tracing
to prevent it from breaking the build.

Test: cd compose/runtime && ./gradlew bOS

This is an imported pull request from https://github.com/androidx/androidx/pull/411.

Resolves #411
Github-Pr-Head-Sha: f56996c85356ea539f433879898821be9b88a3a2
GitOrigin-RevId: 049e135af38ed946bdb58c30acc63260c9733fd9
Change-Id: Ibf7fb68fd15596ec39a78cdf4acb1654d4ba0085
diff --git a/compose/runtime/settings.gradle b/compose/runtime/settings.gradle
index 1f133c9..152212a 100644
--- a/compose/runtime/settings.gradle
+++ b/compose/runtime/settings.gradle
@@ -27,6 +27,7 @@
 playground {
     setupPlayground("../..")
     selectProjectsFromAndroidX({ name ->
+        if (name == ":compose:runtime:runtime-tracing") return false
         if (name.startsWith(":compose:runtime") && name != ":compose:runtime") return true
         if (name == ":annotation:annotation-sampled") return true
         if (isNeededForComposePlayground(name)) return true