Commit d08541bb authored by Jiawei Li's avatar Jiawei Li Committed by Commit Bot

[chromecast] Add bindings_manager_cast target for Android build

Previously, bindings_manager_cast target was guarded by is_linux. This
should be available for all non-fuchsia builds.

Bug: internal b/141398875
Test: CQ
Change-Id: I21d95c65040956dd4446eff61dbd50acbb3f4e20
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1815949Reviewed-by: default avatarKevin Marshall <kmarshall@chromium.org>
Reviewed-by: default avatarYuchen Liu <yucliu@chromium.org>
Commit-Queue: Jiawei Li <lijiawei@chromium.org>
Cr-Commit-Position: refs/heads/master@{#699041}
parent b57d806f
...@@ -56,7 +56,7 @@ if (is_fuchsia) { ...@@ -56,7 +56,7 @@ if (is_fuchsia) {
} }
} }
if (is_linux) { if (is_linux || is_android) {
source_set("bindings_manager_cast") { source_set("bindings_manager_cast") {
sources = [ sources = [
"bindings_manager_cast.cc", "bindings_manager_cast.cc",
...@@ -111,7 +111,7 @@ if (is_linux) { ...@@ -111,7 +111,7 @@ if (is_linux) {
source_set("browsertests") { source_set("browsertests") {
testonly = true testonly = true
deps = [] deps = []
if (is_linux) { if (is_linux || is_android) {
deps += [ "//chromecast/bindings:browsertests_cast" ] deps += [ "//chromecast/bindings:browsertests_cast" ]
} }
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment