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
|
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
if (is_android) {
import("//build/config/android/config.gni")
}
source_set("lib") {
sources = [
"crash_reporter_client.cc",
"crash_reporter_client.h",
"crash_keys_win.cc",
"crash_keys_win.h",
]
include_dirs = [ "../../../breakpad/src" ]
}
# Note: if you depend on this target, you need to either link in
# content.gyp:content_common, or add content/public/common/content_switches.cc
# to your sources.
#
# GYP version: components/crash.gypi:crash_component
source_set("app") {
sources = [
"breakpad_linux_impl.h",
"breakpad_mac.h",
"breakpad_mac.mm",
"breakpad_win.cc",
"breakpad_win.h",
"hard_error_handler_win.cc",
"hard_error_handler_win.h",
]
if (is_android || is_linux) {
# Want these files on both Linux and Android.
set_sources_assignment_filter([])
sources += [
"breakpad_linux.cc",
"breakpad_linux.h",
]
}
defines = [ "CRASH_IMPLEMENTATION" ]
deps = [
"//base",
":lib",
]
if (is_android) {
defines += [ "CHROME_BUILD_ID=" + android_chrome_build_id ]
}
if (is_mac) {
deps += [ "//breakpad" ]
} else if (is_win) {
deps += [
"//sandbox",
"//breakpad:breakpad_handler",
#'../breakpad/breakpad.gyp:breakpad_sender', TODO(GYP)
]
} else if (is_posix && !is_ios && (!is_android || !is_android_webview_build)) {
deps += [ "//breakpad:client" ]
}
}
source_set("test_support") {
deps = [
":lib",
]
}
|