summaryrefslogtreecommitdiffstats
path: root/breakpad/BUILD.gn
diff options
context:
space:
mode:
authorvchigrin <vchigrin@yandex-team.ru>2015-01-20 12:57:25 -0800
committerCommit bot <commit-bot@chromium.org>2015-01-20 20:58:22 +0000
commit06b987e77e0a6867627e5070d336ef6218d0a0f5 (patch)
treebb866c2ba6afe614ee6812e15959d05468842de0 /breakpad/BUILD.gn
parentaeb064e5b440ae5cfcf380dc74e1614629479305 (diff)
downloadchromium_src-06b987e77e0a6867627e5070d336ef6218d0a0f5.zip
chromium_src-06b987e77e0a6867627e5070d336ef6218d0a0f5.tar.gz
chromium_src-06b987e77e0a6867627e5070d336ef6218d0a0f5.tar.bz2
Add breakpad_sender target to GN build.
Review URL: https://codereview.chromium.org/859643002 Cr-Commit-Position: refs/heads/master@{#312271}
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" ]
+ }
}