File tree Expand file tree Collapse file tree 9 files changed +23
-6
lines changed
firebase-crashlytics-ndk/src Expand file tree Collapse file tree 9 files changed +23
-6
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ include $(CLEAR_VARS)
6
6
7
7
LOCAL_MODULE := crashpad_client
8
8
LOCAL_C_INCLUDES := \
9
+ $(LOCAL_PATH ) /../../libchrome/include \
9
10
$(LOCAL_PATH ) /$(THIRD_PARTY_PATH ) /.. \
10
11
$(LOCAL_PATH ) /$(THIRD_PARTY_PATH ) /crashpad \
11
12
Original file line number Diff line number Diff line change @@ -5,7 +5,10 @@ THIRD_PARTY_PATH := ../../../../third_party
5
5
include $(CLEAR_VARS )
6
6
7
7
LOCAL_MODULE := crashpad_handler_lib
8
- LOCAL_C_INCLUDES := $(LOCAL_PATH ) /$(THIRD_PARTY_PATH ) /crashpad
8
+ LOCAL_C_INCLUDES := \
9
+ $(LOCAL_PATH ) /../../libchrome/include \
10
+ $(LOCAL_PATH ) /$(THIRD_PARTY_PATH ) /crashpad \
11
+
9
12
LOCAL_CPPFLAGS := \
10
13
-D_FILE_OFFSET_BITS=64 \
11
14
-DCRASHPAD_ZLIB_SOURCE_SYSTEM \
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ include $(CLEAR_VARS)
6
6
7
7
LOCAL_MODULE := crashpad_util
8
8
LOCAL_C_INCLUDES := \
9
+ $(LOCAL_PATH ) /../../libchrome/include \
9
10
$(LOCAL_PATH ) /$(THIRD_PARTY_PATH ) /.. \
10
11
$(LOCAL_PATH ) /$(THIRD_PARTY_PATH ) /crashpad \
11
12
Original file line number Diff line number Diff line change @@ -21,11 +21,10 @@ LOCAL_SRC_FILES := \
21
21
$(THIRD_PARTY_PATH ) /mini_chromium/base/files/file_util_posix.cc \
22
22
$(THIRD_PARTY_PATH ) /mini_chromium/base/files/scoped_file.cc \
23
23
$(THIRD_PARTY_PATH ) /mini_chromium/base/logging.cc \
24
+ $(THIRD_PARTY_PATH ) /mini_chromium/base/memory/page_size_posix.cc \
24
25
$(THIRD_PARTY_PATH ) /mini_chromium/base/posix/safe_strerror.cc \
25
26
$(THIRD_PARTY_PATH ) /mini_chromium/base/process/memory.cc \
26
- $(THIRD_PARTY_PATH ) /mini_chromium/base/process/process_metrics_posix.cc \
27
27
$(THIRD_PARTY_PATH ) /mini_chromium/base/rand_util.cc \
28
- $(THIRD_PARTY_PATH ) /mini_chromium/base/strings/string16.cc \
29
28
$(THIRD_PARTY_PATH ) /mini_chromium/base/strings/string_number_conversions.cc \
30
29
$(THIRD_PARTY_PATH ) /mini_chromium/base/strings/string_util.cc \
31
30
$(THIRD_PARTY_PATH ) /mini_chromium/base/strings/stringprintf.cc \
Original file line number Diff line number Diff line change
1
+ #ifndef BUILD_CHROMEOS_BUILDFLAGS_H_
2
+ #define BUILD_CHROMEOS_BUILDFLAGS_H_
3
+
4
+ #include "build/buildflag.h"
5
+
6
+ #define BUILDFLAG_INTERNAL_IS_CHROMEOS_DEVICE () (0)
7
+ #define BUILDFLAG_INTERNAL_IS_CHROMEOS_LACROS () (0)
8
+ #define BUILDFLAG_INTERNAL_IS_CHROMEOS_ASH () (0)
9
+
10
+ #endif
11
+
Original file line number Diff line number Diff line change @@ -12,7 +12,9 @@ LOCAL_MODULE := crashlytics-common
12
12
LOCAL_C_INCLUDES := \
13
13
$(LOCAL_PATH ) /include \
14
14
$(LOCAL_PATH ) /../libcrashlytics/include \
15
+ $(LOCAL_PATH ) /../libchrome/include \
15
16
$(LOCAL_PATH ) /$(THIRD_PARTY_PATH ) /crashpad \
17
+ $(LOCAL_PATH ) /$(THIRD_PARTY_PATH ) /mini_chromium \
16
18
17
19
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH ) /include
18
20
LOCAL_CPPFLAGS := \
Original file line number Diff line number Diff line change 16
16
#define __CRASHLYTICS_VERSION_H__
17
17
18
18
//! Authoritative libcrashlytics version string.
19
- #define VERSION "3.1 .0"
19
+ #define VERSION "3.2 .0"
20
20
21
21
#endif // __CRASHLYTICS_VERSION_H__
Submodule
crashpad updated from 36d4bb8 to 4bf79bc
You can’t perform that action at this time.
0 commit comments