| 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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 'src/common/mac/file_id.cc', | 299 'src/common/mac/file_id.cc', |
| 300 'src/common/mac/launch_reporter.cc', | 300 'src/common/mac/launch_reporter.cc', |
| 301 'src/common/mac/macho_id.cc', | 301 'src/common/mac/macho_id.cc', |
| 302 'src/common/mac/macho_utilities.cc', | 302 'src/common/mac/macho_utilities.cc', |
| 303 'src/common/mac/macho_walker.cc', | 303 'src/common/mac/macho_walker.cc', |
| 304 'src/common/mac/string_utilities.cc', | 304 'src/common/mac/string_utilities.cc', |
| 305 'src/common/md5.cc', | 305 'src/common/md5.cc', |
| 306 'src/common/simple_string_dictionary.cc', | 306 'src/common/simple_string_dictionary.cc', |
| 307 'src/common/string_conversion.cc', | 307 'src/common/string_conversion.cc', |
| 308 ], | 308 ], |
| 309 'conditions': [ |
| 310 ['OS=="ios"', { |
| 311 'xcode_settings' : { |
| 312 'WARNING_CFLAGS': [ |
| 313 # See https://bugs.chromium.org/p/google-breakpad/issues/detai
l?id=675. |
| 314 '-Wno-deprecated-declarations', |
| 315 ], |
| 316 }, |
| 317 }], |
| 318 ], |
| 309 }, | 319 }, |
| 310 { | 320 { |
| 311 # GN version: //breakpad:crash_inspector | 321 # GN version: //breakpad:crash_inspector |
| 312 'target_name': 'crash_inspector', | 322 'target_name': 'crash_inspector', |
| 313 'type': 'executable', | 323 'type': 'executable', |
| 314 'variables': { | 324 'variables': { |
| 315 'mac_real_dsym': 1, | 325 'mac_real_dsym': 1, |
| 316 }, | 326 }, |
| 317 'dependencies': [ | 327 'dependencies': [ |
| 318 'breakpad_utilities', | 328 'breakpad_utilities', |
| (...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1005 'breakpad_unittests_apk.isolate', | 1015 'breakpad_unittests_apk.isolate', |
| 1006 ], | 1016 ], |
| 1007 }, | 1017 }, |
| 1008 ] | 1018 ] |
| 1009 } | 1019 } |
| 1010 ], | 1020 ], |
| 1011 ], | 1021 ], |
| 1012 }], | 1022 }], |
| 1013 ], | 1023 ], |
| 1014 } | 1024 } |
| OLD | NEW |