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

Side by Side Diff: handler/handler.gyp

Issue 1430773003: win: Handle binary with embedded CodeView debug record (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: rebase Created 5 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 | « no previous file | handler/win/crashy_test_z7_loader.cc » ('j') | 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 '../util/util.gyp:crashpad_util', 103 '../util/util.gyp:crashpad_util',
104 ], 104 ],
105 'include_dirs': [ 105 'include_dirs': [
106 '..', 106 '..',
107 ], 107 ],
108 'sources': [ 108 'sources': [
109 'win/self_destroying_test_program.cc', 109 'win/self_destroying_test_program.cc',
110 ], 110 ],
111 }, 111 },
112 ], 112 ],
113 'conditions': [
114 # Cannot create an x64 DLL with embedded debug info.
115 ['target_arch=="ia32"', {
116 'targets': [
117 {
118 'target_name': 'crashy_z7_loader',
119 'type': 'executable',
120 'dependencies': [
121 '../client/client.gyp:crashpad_client',
122 '../test/test.gyp:crashpad_test',
123 '../third_party/mini_chromium/mini_chromium.gyp:base',
124 '../tools/tools.gyp:crashpad_tool_support',
125 ],
126 'include_dirs': [
127 '..',
128 ],
129 'sources': [
130 'win/crashy_test_z7_loader.cc',
131 ],
132 },
133 ],
134 }],
135 ],
113 }, { 136 }, {
114 'targets': [], 137 'targets': [],
115 }], 138 }],
116 ], 139 ],
117 } 140 }
OLDNEW
« no previous file with comments | « no previous file | handler/win/crashy_test_z7_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698