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

Side by Side Diff: tools/tools.gyp

Issue 1022663002: Add crashpad_database_util and its man page (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Address review feedback Created 5 years, 9 months 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
« no previous file with comments | « tools/mac/run_with_crashpad.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Crashpad Authors. All rights reserved. 1 # Copyright 2014 The Crashpad Authors. All rights reserved.
2 # 2 #
3 # Licensed under the Apache License, Version 2.0 (the "License"); 3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License. 4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at 5 # You may obtain a copy of the License at
6 # 6 #
7 # http://www.apache.org/licenses/LICENSE-2.0 7 # http://www.apache.org/licenses/LICENSE-2.0
8 # 8 #
9 # Unless required by applicable law or agreed to in writing, software 9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS, 10 # distributed under the License is distributed on an "AS IS" BASIS,
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 ], 53 ],
54 'include_dirs': [ 54 'include_dirs': [
55 '..', 55 '..',
56 ], 56 ],
57 'sources': [ 57 'sources': [
58 'tool_support.cc', 58 'tool_support.cc',
59 'tool_support.h', 59 'tool_support.h',
60 ], 60 ],
61 }, 61 },
62 { 62 {
63 'target_name': 'crashpad_database_util',
64 'type': 'executable',
65 'dependencies': [
66 'crashpad_tool_support',
67 '../client/client.gyp:crashpad_client',
68 '../compat/compat.gyp:crashpad_compat',
69 '../third_party/mini_chromium/mini_chromium.gyp:base',
70 '../util/util.gyp:crashpad_util',
71 ],
72 'include_dirs': [
73 '..',
74 ],
75 'sources': [
76 'crashpad_database_util.cc',
77 ],
78 },
79 {
63 'target_name': 'catch_exception_tool', 80 'target_name': 'catch_exception_tool',
64 'type': 'executable', 81 'type': 'executable',
65 'dependencies': [ 82 'dependencies': [
66 'crashpad_tool_support', 83 'crashpad_tool_support',
67 '../compat/compat.gyp:crashpad_compat', 84 '../compat/compat.gyp:crashpad_compat',
68 '../third_party/mini_chromium/mini_chromium.gyp:base', 85 '../third_party/mini_chromium/mini_chromium.gyp:base',
69 '../util/util.gyp:crashpad_util', 86 '../util/util.gyp:crashpad_util',
70 ], 87 ],
71 'include_dirs': [ 88 'include_dirs': [
72 '..', 89 '..',
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 'sources': [ 180 'sources': [
164 'mac/run_with_crashpad.cc', 181 'mac/run_with_crashpad.cc',
165 ], 182 ],
166 }, 183 },
167 ], 184 ],
168 }, { 185 }, {
169 'targets': [], 186 'targets': [],
170 }], 187 }],
171 ], 188 ],
172 } 189 }
OLDNEW
« no previous file with comments | « tools/mac/run_with_crashpad.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698