OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |