From 2e161431bccb74f8252ecb9acaa5d06a22b8ee9e Mon Sep 17 00:00:00 2001 From: priettt Date: Fri, 24 Jun 2022 12:30:59 -0300 Subject: [PATCH] Added a missing dependency on android/google_breakpad/Android.mk pe_file.cc, used in minidump_writer.cc, was not included in LOCAL_SRC_FILES. This caused breakpad to fail in build time, as it didn't find the file. Tested using ndk 21.4.7075529, building on an arm64 device. Change-Id: I192539a52c1344eba9999c6780bcd8b83ea7e772 Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/3723683 Reviewed-by: Joshua Peraza --- android/google_breakpad/Android.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/android/google_breakpad/Android.mk b/android/google_breakpad/Android.mk index 86184927..af7aa920 100644 --- a/android/google_breakpad/Android.mk +++ b/android/google_breakpad/Android.mk @@ -80,6 +80,7 @@ LOCAL_SRC_FILES := \ src/client/linux/minidump_writer/linux_dumper.cc \ src/client/linux/minidump_writer/linux_ptrace_dumper.cc \ src/client/linux/minidump_writer/minidump_writer.cc \ + src/client/linux/minidump_writer/pe_file.cc \ src/client/minidump_file_writer.cc \ src/common/convert_UTF.cc \ src/common/md5.cc \