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

Side by Side Diff: tools/tools.gyp

Issue 727983002: Add the generate_dump tool (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@task_for_pid
Patch Set: Rebase Created 6 years, 1 month 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/generate_dump.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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 '../util/util.gyp:util', 56 '../util/util.gyp:util',
57 ], 57 ],
58 'include_dirs': [ 58 'include_dirs': [
59 '..', 59 '..',
60 ], 60 ],
61 'sources': [ 61 'sources': [
62 'exception_port_tool.cc', 62 'exception_port_tool.cc',
63 ], 63 ],
64 }, 64 },
65 { 65 {
66 'target_name': 'generate_dump',
67 'type': 'executable',
68 'dependencies': [
69 'tool_support',
70 '../compat/compat.gyp:compat',
71 '../minidump/minidump.gyp:minidump',
72 '../snapshot/snapshot.gyp:snapshot',
73 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
74 '../util/util.gyp:util',
75 ],
76 'include_dirs': [
77 '..',
78 ],
79 'sources': [
80 'generate_dump.cc',
81 ],
82 },
83 {
66 'target_name': 'on_demand_service_tool', 84 'target_name': 'on_demand_service_tool',
67 'type': 'executable', 85 'type': 'executable',
68 'dependencies': [ 86 'dependencies': [
69 'tool_support', 87 'tool_support',
70 '../compat/compat.gyp:compat', 88 '../compat/compat.gyp:compat',
71 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', 89 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
72 '../util/util.gyp:util', 90 '../util/util.gyp:util',
73 ], 91 ],
74 'include_dirs': [ 92 'include_dirs': [
75 '..', 93 '..',
76 ], 94 ],
77 'link_settings': { 95 'link_settings': {
78 'libraries': [ 96 'libraries': [
79 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', 97 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
80 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 98 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
81 ], 99 ],
82 }, 100 },
83 'sources': [ 101 'sources': [
84 'on_demand_service_tool.mm', 102 'on_demand_service_tool.mm',
85 ], 103 ],
86 }, 104 },
87 ], 105 ],
88 }, { 106 }, {
89 'targets': [], 107 'targets': [],
90 }], 108 }],
91 ], 109 ],
92 } 110 }
OLDNEW
« no previous file with comments | « tools/generate_dump.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698