mirror of
https://github.com/chromium/crashpad.git
synced 2025-01-14 01:08:01 +08:00
[util/net] Fix append to undefined defines
From the Fuchsia build: ``` ERROR at //third_party/crashpad/util/BUILD.gn:658:7: Undefined identifier. defines += [ "CRASHPAD_USE_BORINGSSL" ] ^------ See //src/developer/forensics/crash_reports/BUILD.gn:127:5: which caused the file to be included. "//third_party/crashpad/util", ^---------------------------- ``` Change-Id: I1f563e5bb599b3a7a83ee8211037ee1d7464bd62 Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/3370891 Reviewed-by: Francois Rousseau <frousseau@google.com> Commit-Queue: Francois Rousseau <frousseau@google.com> Reviewed-by: Robert Sesek <rsesek@chromium.org>
This commit is contained in:
parent
821d265ea9
commit
ae39cec086
@ -655,7 +655,7 @@ crashpad_static_library("net") {
|
||||
if (crashpad_http_transport_impl == "socket") {
|
||||
sources += [ "net/http_transport_socket.cc" ]
|
||||
if (crashpad_use_boringssl_for_http_transport_socket) {
|
||||
defines += [ "CRASHPAD_USE_BORINGSSL" ]
|
||||
defines = [ "CRASHPAD_USE_BORINGSSL" ]
|
||||
|
||||
if (crashpad_is_in_chromium || crashpad_is_in_fuchsia) {
|
||||
deps += [ "//third_party/boringssl" ]
|
||||
|
Loading…
x
Reference in New Issue
Block a user