summaryrefslogtreecommitdiffstats
path: root/breakpad/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'breakpad/BUILD.gn')
-rw-r--r--breakpad/BUILD.gn15
1 files changed, 15 insertions, 0 deletions
diff --git a/breakpad/BUILD.gn b/breakpad/BUILD.gn
index 1598aac..190549a 100644
--- a/breakpad/BUILD.gn
+++ b/breakpad/BUILD.gn
@@ -38,6 +38,10 @@ config("handler_config") {
include_dirs = [ "src" ]
}
+config("sender_config") {
+ include_dirs = [ "src" ]
+}
+
# {micro,mini}dump_stackwalk and minidump_dump are tool-type executables that do
# not build on iOS.
if (current_toolchain == host_toolchain && !is_win) {
@@ -763,4 +767,15 @@ if (is_win) {
"src/common/windows/string_utils-inl.h",
]
}
+
+ source_set("breakpad_sender") {
+ sources = [
+ "src/client/windows/sender/crash_report_sender.cc",
+ "src/client/windows/sender/crash_report_sender.h",
+ "src/common/windows/http_upload.cc",
+ "src/common/windows/http_upload.h",
+ ]
+ configs += [ ":sender_config" ]
+ public_configs = [ ":sender_config" ]
+ }
}