aboutsummaryrefslogtreecommitdiff
path: root/src/common/tests/file_utils.cc
diff options
context:
space:
mode:
authordigit@chromium.org <digit@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-08-23 15:45:01 +0000
committerdigit@chromium.org <digit@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-08-23 15:45:01 +0000
commit13d9e27ef04797cfd00ac56cb1ee37f71d70214e (patch)
treedbf455ba65a37ab20cffe283bfb863a1665164eb /src/common/tests/file_utils.cc
parentPulls in gmock r263, gtest r368, and gyp r1472. (diff)
downloadbreakpad-13d9e27ef04797cfd00ac56cb1ee37f71d70214e.tar.xz
Fix Breakpad unit tests build for Android.
This patch contains the source-related fixes to ensure that the Breakpad unit tests build properly when targetting Android. Calling 'make check' still fails because there is still no way to run the unit test programs on a device. This will be addressed by a future patch. Important notes: - You must target Android API level 9 (Gingerbread) or higher to build the unit tests. This requirement is due to the current GTest revision used in the breakpad source tree. - This patch adds headers providing inlined C library functions missing from the NDK (see src/common/android/testing). They are inlined to avoid modifying Makefile.am and other build files. - Similarly, the <wchar.h> header-fix under src/common/android/testing/include is only required by GTest's current revision. E.g. it's not needed when building Breakpad as part of Chromium which uses a more up-to-date revision. Review URL: https://breakpad.appspot.com/439002 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1020 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/tests/file_utils.cc')
-rw-r--r--src/common/tests/file_utils.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/tests/file_utils.cc b/src/common/tests/file_utils.cc
index 1264b078..80a6b650 100644
--- a/src/common/tests/file_utils.cc
+++ b/src/common/tests/file_utils.cc
@@ -33,6 +33,7 @@
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
+#include <sys/stat.h>
#include <unistd.h>
#include "common/linux/eintr_wrapper.h"