aboutsummaryrefslogtreecommitdiff
path: root/Android.mk
blob: 79f36d8756b58d310ed6f00285c94c5198ba0cd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
# Copyright (C) 2015 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

LOCAL_PATH := $(call my-dir)

# Static library.
# =================================================
include $(CLEAR_VARS)

LOCAL_MODULE := breakpad_client

LOCAL_CPP_EXTENSION := .cc

LOCAL_SRC_FILES := \
    src/client/linux/dump_writer_common/seccomp_unwinder.cc \
    src/client/linux/dump_writer_common/thread_info.cc \
    src/client/linux/dump_writer_common/ucontext_reader.cc \
    src/client/linux/handler/minidump_descriptor.cc \
    src/client/linux/minidump_writer/linux_core_dumper.cc \
    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/minidump_file_writer.cc \
    src/common/convert_UTF.c \
    src/common/linux/elf_core_dump.cc \
    src/common/linux/elfutils.cc \
    src/common/linux/file_id.cc \
    src/common/linux/guid_creator.cc \
    src/common/linux/linux_libc_support.cc \
    src/common/linux/memory_mapped_file.cc \
    src/common/linux/safe_readlink.cc \
    src/common/string_conversion.cc \

LOCAL_C_INCLUDES := \
    $(LOCAL_PATH)/src/common/android/include \
    $(LOCAL_PATH)/src \

LOCAL_CFLAGS := \
    -Wall -Werror \
    -Wno-unused-parameter \
    -Wno-tautological-compare

LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_C_INCLUDES)

# Work around b/25435766 core2md segfault.
LOCAL_CLANG_CFLAGS_x86 += -mno-stackrealign
LOCAL_CLANG := true

include $(BUILD_STATIC_LIBRARY)

# core2md binary.
# =================================================
include $(CLEAR_VARS)

LOCAL_MODULE := core2md

LOCAL_CPP_EXTENSION := .cc

LOCAL_SRC_FILES := src/tools/linux/core2md/core2md.cc

LOCAL_STATIC_LIBRARIES := breakpad_client

# Work around b/25435766 core2md segfault.
LOCAL_CLANG_CFLAGS_x86 += -mno-stackrealign
LOCAL_CLANG := true

LOCAL_CFLAGS := -Wall -Werror

include $(BUILD_EXECUTABLE)

# dump_syms host tool.
# =================================================
include $(CLEAR_VARS)
LOCAL_MODULE := dump_syms
LOCAL_MODULE_HOST_OS := linux
LOCAL_CLANG := true
LOCAL_CPPFLAGS_linux := -DHAVE_A_OUT_H -Wno-unused-parameter
LOCAL_CPP_EXTENSION := .cc
LOCAL_C_INCLUDES := \
    $(LOCAL_PATH)/src
LOCAL_SRC_FILES := \
    src/common/dwarf/bytereader.cc \
    src/common/dwarf/dwarf2diehandler.cc \
    src/common/dwarf/dwarf2reader.cc \
    src/common/dwarf_cfi_to_module.cc \
    src/common/dwarf_cu_to_module.cc \
    src/common/dwarf_line_to_module.cc \
    src/common/language.cc \
    src/common/module.cc \
    src/common/stabs_reader.cc \
    src/common/stabs_to_module.cc
LOCAL_SRC_FILES_linux := \
    src/common/linux/crc32.cc \
    src/common/linux/dump_symbols.cc \
    src/common/linux/elfutils.cc \
    src/common/linux/elf_symbols_to_module.cc \
    src/common/linux/file_id.cc \
    src/common/linux/linux_libc_support.cc \
    src/common/linux/memory_mapped_file.cc \
    src/tools/linux/dump_syms/dump_syms.cc
LOCAL_CFLAGS := \
    -Wall -Werror \
    -Wno-unused-local-typedef \
    -Wno-unused-private-field \
    -Wno-unused-result \

include $(BUILD_HOST_EXECUTABLE)

# sym_upload host tool.
# =================================================
include $(CLEAR_VARS)
LOCAL_MODULE := sym_upload
LOCAL_MODULE_HOST_OS := linux
LOCAL_CLANG := true
LOCAL_LDLIBS := -ldl
LOCAL_CPP_EXTENSION := .cc
LOCAL_C_INCLUDES := \
    $(LOCAL_PATH)/src
LOCAL_SRC_FILES_linux := \
    src/common/linux/http_upload.cc \
    src/tools/linux/symupload/sym_upload.cc
LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
include $(BUILD_HOST_EXECUTABLE)

# libdisasm static library.
# =================================================
include $(CLEAR_VARS)
LOCAL_MODULE := libdisasm
LOCAL_MODULE_HOST_OS := linux
LOCAL_CLANG := true
LOCAL_CFLAGS_linux := \
    -Wno-missing-field-initializers \
    -Wno-pointer-arith \
    -Wno-tautological-constant-out-of-range-compare \
    -Wno-unused-parameter
LOCAL_C_INCLUDES := \
    $(LOCAL_PATH)/src/third_party/libdisasm
LOCAL_EXPORT_C_INCLUDE_DIRS := \
    $(LOCAL_PATH)/src/third_party/libdisasm
LOCAL_SRC_FILES := \
    src/third_party/libdisasm/ia32_implicit.c \
    src/third_party/libdisasm/ia32_insn.c \
    src/third_party/libdisasm/ia32_invariant.c \
    src/third_party/libdisasm/ia32_modrm.c \
    src/third_party/libdisasm/ia32_opcode_tables.c \
    src/third_party/libdisasm/ia32_operand.c \
    src/third_party/libdisasm/ia32_reg.c \
    src/third_party/libdisasm/ia32_settings.c \
    src/third_party/libdisasm/x86_disasm.c \
    src/third_party/libdisasm/x86_format.c \
    src/third_party/libdisasm/x86_imm.c \
    src/third_party/libdisasm/x86_insn.c \
    src/third_party/libdisasm/x86_misc.c \
    src/third_party/libdisasm/x86_operand_list.c
include $(BUILD_HOST_STATIC_LIBRARY)

# minidump_stackwalk host tool.
# =================================================
include $(CLEAR_VARS)
LOCAL_MODULE := minidump_stackwalk
LOCAL_MODULE_HOST_OS := linux
LOCAL_CLANG := true
LOCAL_CPP_EXTENSION := .cc
LOCAL_CPPFLAGS_linux := \
    -DHAVE_A_OUT_H \
    -Wno-unused-function \
    -Wno-unused-parameter
LOCAL_C_INCLUDES := \
    $(LOCAL_PATH)/src
LOCAL_SRC_FILES_linux := \
    src/processor/basic_code_modules.cc \
    src/processor/basic_source_line_resolver.cc \
    src/processor/call_stack.cc \
    src/processor/cfi_frame_info.cc \
    src/processor/disassembler_x86.cc \
    src/processor/dump_context.cc \
    src/processor/dump_object.cc \
    src/processor/exploitability.cc \
    src/processor/exploitability_linux.cc \
    src/processor/exploitability_win.cc \
    src/processor/logging.cc \
    src/processor/microdump.cc \
    src/processor/microdump_processor.cc \
    src/processor/minidump.cc \
    src/processor/minidump_processor.cc \
    src/processor/minidump_stackwalk.cc \
    src/processor/pathname_stripper.cc \
    src/processor/process_state.cc \
    src/processor/simple_symbol_supplier.cc \
    src/processor/source_line_resolver_base.cc \
    src/processor/stack_frame_symbolizer.cc \
    src/processor/stackwalk_common.cc \
    src/processor/stackwalker.cc \
    src/processor/stackwalker_amd64.cc \
    src/processor/stackwalker_arm.cc \
    src/processor/stackwalker_arm64.cc \
    src/processor/stackwalker_mips.cc \
    src/processor/stackwalker_ppc.cc \
    src/processor/stackwalker_ppc64.cc \
    src/processor/stackwalker_sparc.cc \
    src/processor/stackwalker_x86.cc \
    src/processor/symbolic_constants_win.cc \
    src/processor/tokenize.cc
LOCAL_STATIC_LIBRARIES := libdisasm
include $(BUILD_HOST_EXECUTABLE)