Commit 620ba787 authored by Andres Medina's avatar Andres Medina Committed by Chromium LUCI CQ

[grpc] Moved windows builds to use static builds.

Flow for windows based shared object is different. Currently no need to
have grpc build as a library on windows. Moving it to a regular static
build.

Bug: 1152807
Test: CQ
Change-Id: I1436b85411618a72edd69e382f06a53267fdb69d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2566718
Commit-Queue: Andres Medina <medinaandres@chromium.org>
Commit-Queue: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarNico Weber <thakis@chromium.org>
Auto-Submit: Andres Medina <medinaandres@chromium.org>
Cr-Commit-Position: refs/heads/master@{#832377}
parent 3678ed8f
......@@ -78,7 +78,8 @@ config("grpc_config_private") {
template("grpc_so") {
# TODO(169395837): Somehow gRPC symbols cannot be found on Android.
# Keep using static linking for now.
if (is_android) {
# In windows use static linking.
if (is_android || is_win) {
source_set(target_name) {
forward_variables_from(invoker, "*")
}
......
......@@ -83,7 +83,8 @@
template("grpc_so") {
# TODO(169395837): Somehow gRPC symbols cannot be found on Android.
# Keep using static linking for now.
if (is_android) {
# In windows use static linking.
if (is_android || is_win) {
source_set(target_name) {
forward_variables_from(invoker, "*")
}
......
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