[fuchsia] remove dependency on libcurl

* crashpad_http_transport_impl is "socket" when targeting Fuchsia
  so the dependency on //third_party/curl:libcurl isn't actually
  ever added - we might as well remove it to prevent confusion

Bug: fuchsia:107235

TESTED=`fx build` in Fuchsia checkout

Change-Id: I75da6e7505f8ab09f9978472e93c48600f4c35cb
Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/3840964
Commit-Queue: Francois Rousseau <frousseau@google.com>
Reviewed-by: Joshua Peraza <jperaza@chromium.org>
This commit is contained in:
Francois Rousseau 2022-08-18 18:10:56 -07:00 committed by Crashpad LUCI CQ
parent 3e80b95054
commit 43ea32b6fe

View File

@ -671,10 +671,6 @@ crashpad_static_library("net") {
}
} else if (crashpad_http_transport_impl == "libcurl") {
sources += [ "net/http_transport_libcurl.cc" ]
if (crashpad_is_in_fuchsia) {
# Host Linux builds in Fuchsia don't have libcurl in a sysroot.
deps += [ "//third_party/curl:libcurl" ]
}
}
}