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

Side by Side Diff: snapshot/snapshot_test.gyp

Issue 1349313003: win: support x64 reading x86 (wow64) (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: mac Created 5 years, 3 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 | « build/run_tests.py ('k') | snapshot/win/cpu_context_win.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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 'dependencies': [ 86 'dependencies': [
87 'crashpad_snapshot_test_module_crashy_initializer', 87 'crashpad_snapshot_test_module_crashy_initializer',
88 'crashpad_snapshot_test_no_op', 88 'crashpad_snapshot_test_no_op',
89 ], 89 ],
90 'link_settings': { 90 'link_settings': {
91 'libraries': [ 91 'libraries': [
92 '$(SDKROOT)/System/Library/Frameworks/OpenCL.framework', 92 '$(SDKROOT)/System/Library/Frameworks/OpenCL.framework',
93 ], 93 ],
94 }, 94 },
95 }], 95 }],
96 ['OS=="win"', {
97 'dependencies': [
98 'crashpad_snapshot_test_crashing_child',
99 ],
100 }],
96 ], 101 ],
97 }, 102 },
98 { 103 {
99 'target_name': 'crashpad_snapshot_test_module', 104 'target_name': 'crashpad_snapshot_test_module',
100 'type': 'loadable_module', 105 'type': 'loadable_module',
101 'dependencies': [ 106 'dependencies': [
102 '../client/client.gyp:crashpad_client', 107 '../client/client.gyp:crashpad_client',
103 '../third_party/mini_chromium/mini_chromium.gyp:base', 108 '../third_party/mini_chromium/mini_chromium.gyp:base',
104 ], 109 ],
105 'include_dirs': [ 110 'include_dirs': [
(...skipping 16 matching lines...) Expand all
122 }, 127 },
123 { 128 {
124 'target_name': 'crashpad_snapshot_test_no_op', 129 'target_name': 'crashpad_snapshot_test_no_op',
125 'type': 'executable', 130 'type': 'executable',
126 'sources': [ 131 'sources': [
127 'mac/mach_o_image_annotations_reader_test_no_op.cc', 132 'mac/mach_o_image_annotations_reader_test_no_op.cc',
128 ], 133 ],
129 }, 134 },
130 ], 135 ],
131 }], 136 }],
137 ['OS=="win"', {
138 'targets': [
139 {
140 'target_name': 'crashpad_snapshot_test_crashing_child',
141 'type': 'executable',
142 'dependencies': [
143 '../client/client.gyp:crashpad_client',
144 '../compat/compat.gyp:crashpad_compat',
145 '../third_party/mini_chromium/mini_chromium.gyp:base',
146 '../util/util.gyp:crashpad_util',
147 ],
148 'sources': [
149 'win/crashpad_snapshot_test_crashing_child.cc',
150 ],
151 },
152 ],
153 }],
132 ], 154 ],
133 } 155 }
OLDNEW
« no previous file with comments | « build/run_tests.py ('k') | snapshot/win/cpu_context_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698