OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'includes': [ | 6 'includes': [ |
7 'breakpad_sender.gypi', | 7 'breakpad_sender.gypi', |
8 'breakpad_handler.gypi', | 8 'breakpad_handler.gypi', |
9 ], | 9 ], |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 ], | 229 ], |
230 }, | 230 }, |
231 }, | 231 }, |
232 }, | 232 }, |
233 'targets': [ | 233 'targets': [ |
234 { | 234 { |
235 # GN version: //breakpad:utilities | 235 # GN version: //breakpad:utilities |
236 'target_name': 'breakpad_utilities', | 236 'target_name': 'breakpad_utilities', |
237 'type': 'static_library', | 237 'type': 'static_library', |
238 'sources': [ | 238 'sources': [ |
| 239 'src/client/mac/crash_generation/ConfigFile.mm', |
239 'src/client/mac/handler/breakpad_nlist_64.cc', | 240 'src/client/mac/handler/breakpad_nlist_64.cc', |
240 'src/client/mac/handler/dynamic_images.cc', | 241 'src/client/mac/handler/dynamic_images.cc', |
241 'src/client/mac/handler/minidump_generator.cc', | 242 'src/client/mac/handler/minidump_generator.cc', |
242 'src/client/minidump_file_writer.cc', | 243 'src/client/minidump_file_writer.cc', |
243 'src/common/convert_UTF.c', | 244 'src/common/convert_UTF.c', |
244 'src/common/mac/MachIPC.mm', | 245 'src/common/mac/MachIPC.mm', |
245 'src/common/mac/arch_utilities.cc', | 246 'src/common/mac/arch_utilities.cc', |
246 'src/common/mac/bootstrap_compat.cc', | 247 'src/common/mac/bootstrap_compat.cc', |
247 'src/common/mac/file_id.cc', | 248 'src/common/mac/file_id.cc', |
| 249 'src/common/mac/launch_reporter.cc', |
248 'src/common/mac/macho_id.cc', | 250 'src/common/mac/macho_id.cc', |
249 'src/common/mac/macho_utilities.cc', | 251 'src/common/mac/macho_utilities.cc', |
250 'src/common/mac/macho_walker.cc', | 252 'src/common/mac/macho_walker.cc', |
251 'src/common/mac/string_utilities.cc', | 253 'src/common/mac/string_utilities.cc', |
252 'src/common/md5.cc', | 254 'src/common/md5.cc', |
253 'src/common/simple_string_dictionary.cc', | 255 'src/common/simple_string_dictionary.cc', |
254 'src/common/string_conversion.cc', | 256 'src/common/string_conversion.cc', |
255 ], | 257 ], |
256 }, | 258 }, |
257 { | 259 { |
258 # GN version: //breakpad:crash_inspector | 260 # GN version: //breakpad:crash_inspector |
259 'target_name': 'crash_inspector', | 261 'target_name': 'crash_inspector', |
260 'type': 'executable', | 262 'type': 'executable', |
261 'variables': { | 263 'variables': { |
262 'mac_real_dsym': 1, | 264 'mac_real_dsym': 1, |
263 }, | 265 }, |
264 'dependencies': [ | 266 'dependencies': [ |
265 'breakpad_utilities', | 267 'breakpad_utilities', |
266 ], | 268 ], |
267 'include_dirs': [ | 269 'include_dirs': [ |
268 'src/client/apple/Framework', | 270 'src/client/apple/Framework', |
269 'src/common/mac', | 271 'src/common/mac', |
270 ], | 272 ], |
271 'sources': [ | 273 'sources': [ |
272 'src/client/mac/crash_generation/ConfigFile.mm', | |
273 'src/client/mac/crash_generation/Inspector.mm', | 274 'src/client/mac/crash_generation/Inspector.mm', |
274 'src/client/mac/crash_generation/InspectorMain.mm', | 275 'src/client/mac/crash_generation/InspectorMain.mm', |
275 ], | 276 ], |
276 'link_settings': { | 277 'link_settings': { |
277 'libraries': [ | 278 'libraries': [ |
278 '$(SDKROOT)/System/Library/Frameworks/CoreServices.framework', | 279 '$(SDKROOT)/System/Library/Frameworks/CoreServices.framework', |
279 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 280 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
280 ], | 281 ], |
281 } | 282 } |
282 }, | 283 }, |
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
881 'action_name': 'strip breakpad_unittests', | 882 'action_name': 'strip breakpad_unittests', |
882 'inputs': [ '<(PRODUCT_DIR)/breakpad_unittests' ], | 883 'inputs': [ '<(PRODUCT_DIR)/breakpad_unittests' ], |
883 'outputs': [ '<(PRODUCT_DIR)/breakpad_unittests_stripped' ], | 884 'outputs': [ '<(PRODUCT_DIR)/breakpad_unittests_stripped' ], |
884 'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)'
], | 885 'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)'
], |
885 }], | 886 }], |
886 } | 887 } |
887 ], | 888 ], |
888 }], | 889 }], |
889 ], | 890 ], |
890 } | 891 } |
OLD | NEW |