From 06b987e77e0a6867627e5070d336ef6218d0a0f5 Mon Sep 17 00:00:00 2001 From: vchigrin Date: Tue, 20 Jan 2015 12:57:25 -0800 Subject: Add breakpad_sender target to GN build. Review URL: https://codereview.chromium.org/859643002 Cr-Commit-Position: refs/heads/master@{#312271} --- breakpad/BUILD.gn | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'breakpad/BUILD.gn') 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" ] + } } -- cgit v1.1