Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1047)

Side by Side Diff: build/secondary/third_party/crashpad/crashpad/snapshot/BUILD.gn

Issue 1416133003: Crashpad Windows: Use the Crashpad client instead of Breakpad on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add some stub gn files Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 source_set("snapshot") {
6 deps = [
7 "../client",
8 "../compat",
9 "../util",
10 "//base",
11 ]
12
13 include_dirs = [ ".." ]
14
15 if (is_win) {
16 cflags = [ "/wd4201" ]
17 }
18
19 sources = [
20 "cpu_architecture.h",
21 "cpu_context.cc",
22 "cpu_context.h",
23 "crashpad_info_client_options.cc",
24 "crashpad_info_client_options.h",
25 "exception_snapshot.h",
26 "handle_snapshot.cc",
27 "handle_snapshot.h",
28 "mac/cpu_context_mac.cc",
29 "mac/cpu_context_mac.h",
30 "mac/exception_snapshot_mac.cc",
31 "mac/exception_snapshot_mac.h",
32 "mac/mach_o_image_annotations_reader.cc",
33 "mac/mach_o_image_annotations_reader.h",
34 "mac/mach_o_image_reader.cc",
35 "mac/mach_o_image_reader.h",
36 "mac/mach_o_image_segment_reader.cc",
37 "mac/mach_o_image_segment_reader.h",
38 "mac/mach_o_image_symbol_table_reader.cc",
39 "mac/mach_o_image_symbol_table_reader.h",
40 "mac/memory_snapshot_mac.cc",
41 "mac/memory_snapshot_mac.h",
42 "mac/module_snapshot_mac.cc",
43 "mac/module_snapshot_mac.h",
44 "mac/process_reader.cc",
45 "mac/process_reader.h",
46 "mac/process_snapshot_mac.cc",
47 "mac/process_snapshot_mac.h",
48 "mac/process_types.cc",
49 "mac/process_types.h",
50 "mac/process_types/all.proctype",
51 "mac/process_types/crashpad_info.proctype",
52 "mac/process_types/crashreporterclient.proctype",
53 "mac/process_types/custom.cc",
54 "mac/process_types/dyld_images.proctype",
55 "mac/process_types/flavors.h",
56 "mac/process_types/internal.h",
57 "mac/process_types/loader.proctype",
58 "mac/process_types/nlist.proctype",
59 "mac/process_types/traits.h",
60 "mac/system_snapshot_mac.cc",
61 "mac/system_snapshot_mac.h",
62 "mac/thread_snapshot_mac.cc",
63 "mac/thread_snapshot_mac.h",
64 "memory_snapshot.h",
65 "minidump/minidump_simple_string_dictionary_reader.cc",
66 "minidump/minidump_simple_string_dictionary_reader.h",
67 "minidump/minidump_string_list_reader.cc",
68 "minidump/minidump_string_list_reader.h",
69 "minidump/minidump_string_reader.cc",
70 "minidump/minidump_string_reader.h",
71 "minidump/module_snapshot_minidump.cc",
72 "minidump/module_snapshot_minidump.h",
73 "minidump/process_snapshot_minidump.cc",
74 "minidump/process_snapshot_minidump.h",
75 "module_snapshot.h",
76 "process_snapshot.h",
77 "system_snapshot.h",
78 "thread_snapshot.h",
79 "win/cpu_context_win.cc",
80 "win/cpu_context_win.h",
81 "win/exception_snapshot_win.cc",
82 "win/exception_snapshot_win.h",
83 "win/memory_map_region_snapshot_win.cc",
84 "win/memory_map_region_snapshot_win.h",
85 "win/memory_snapshot_win.cc",
86 "win/memory_snapshot_win.h",
87 "win/module_snapshot_win.cc",
88 "win/module_snapshot_win.h",
89 "win/pe_image_annotations_reader.cc",
90 "win/pe_image_annotations_reader.h",
91 "win/pe_image_reader.cc",
92 "win/pe_image_reader.h",
93 "win/process_reader_win.cc",
94 "win/process_reader_win.h",
95 "win/process_snapshot_win.cc",
96 "win/process_snapshot_win.h",
97 "win/system_snapshot_win.cc",
98 "win/system_snapshot_win.h",
99 "win/thread_snapshot_win.cc",
100 "win/thread_snapshot_win.h",
101 ]
102 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698