[Cast Convergence][fuchsia] Switch bots to enable_cast_receiver
Switch the fuchsia-*-cast bots to set enable_cast_receiver=true instead
of is_chromecast=true. The former currently sets the latter, but the
latter is no longer needed on Fuchsia.
This requires switching the condition for the //chromecast:cast_test_lists deps to enable_cast_receiver. Although //chromecast does not contain Cast Receiver code, this provides coverage without affecting all Fuchsia builds.
Bug: 1330636
Change-Id: I32761f827347cc32f47f6b8012d902b11d5e13da
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3719288
Reviewed-by: Ben Pastene <[email protected]>
Reviewed-by: Erik Staab <[email protected]>
Reviewed-by: Sergey Ulanov <[email protected]>
Commit-Queue: David Dorwin <[email protected]>
Reviewed-by: Mark Foltz <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1024467}
diff --git a/BUILD.gn b/BUILD.gn
index d62cd51..a3cf0a49 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -676,8 +676,7 @@
deps += [ "//third_party/breakpad:symupload($host_toolchain)" ]
}
- # TODO(crbug.com/1330636): Remove the Fuchsia `is_chromecast` condition.
- if (is_cast_android || is_castos || (is_fuchsia && is_chromecast)) {
+ if (is_cast_android || is_castos || (is_fuchsia && enable_cast_receiver)) {
deps += [ "//chromecast:cast_test_lists" ]
}