| 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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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': [ | 309 'conditions': [ |
| 310 ['OS=="ios"', { | 310 ['OS=="ios"', { |
| 311 'xcode_settings' : { | 311 'xcode_settings' : { |
| 312 'WARNING_CFLAGS': [ | 312 'WARNING_CFLAGS': [ |
| 313 # See https://bugs.chromium.org/p/google-breakpad/issues/detai
l?id=675. | 313 # See https://bugs.chromium.org/p/google-breakpad/issues/detai
l?id=675. |
| 314 # TODO(crbug.com/569158): remove when fixed. |
| 314 '-Wno-deprecated-declarations', | 315 '-Wno-deprecated-declarations', |
| 315 ], | 316 ], |
| 316 }, | 317 }, |
| 317 }], | 318 }], |
| 318 ], | 319 ], |
| 319 }, | 320 }, |
| 320 { | 321 { |
| 321 # GN version: //breakpad:crash_inspector | 322 # GN version: //breakpad:crash_inspector |
| 322 'target_name': 'crash_inspector', | 323 'target_name': 'crash_inspector', |
| 323 'type': 'executable', | 324 'type': 'executable', |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 864 'include_dirs': [ | 865 'include_dirs': [ |
| 865 'src', | 866 'src', |
| 866 'src/client/mac/Framework', | 867 'src/client/mac/Framework', |
| 867 'src/common/mac', | 868 'src/common/mac', |
| 868 ], | 869 ], |
| 869 'direct_dependent_settings': { | 870 'direct_dependent_settings': { |
| 870 'include_dirs': [ | 871 'include_dirs': [ |
| 871 'src', | 872 'src', |
| 872 ], | 873 ], |
| 873 }, | 874 }, |
| 875 'xcode_settings' : { |
| 876 'WARNING_CFLAGS': [ |
| 877 # See https://bugs.chromium.org/p/google-breakpad/issues/detail?id
=675. |
| 878 # TODO(crbug.com/569158): remove when fixed. |
| 879 '-Wno-deprecated-declarations', |
| 880 ], |
| 881 }, |
| 874 } | 882 } |
| 875 ] | 883 ] |
| 876 }], | 884 }], |
| 877 ['OS=="ios" and "<(GENERATOR)"=="xcode" and "<(GENERATOR_FLAVOR)"!="ninja"',
{ | 885 ['OS=="ios" and "<(GENERATOR)"=="xcode" and "<(GENERATOR_FLAVOR)"!="ninja"',
{ |
| 878 'variables': { | 886 'variables': { |
| 879 'ninja_output_dir': 'ninja-breakpad', | 887 'ninja_output_dir': 'ninja-breakpad', |
| 880 'ninja_product_dir': | 888 'ninja_product_dir': |
| 881 '<(DEPTH)/xcodebuild/<(ninja_output_dir)/<(CONFIGURATION_NAME)', | 889 '<(DEPTH)/xcodebuild/<(ninja_output_dir)/<(CONFIGURATION_NAME)', |
| 882 }, | 890 }, |
| 883 # Generation is done via two actions: (1) compiling the executable with | 891 # Generation is done via two actions: (1) compiling the executable with |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1015 'breakpad_unittests_apk.isolate', | 1023 'breakpad_unittests_apk.isolate', |
| 1016 ], | 1024 ], |
| 1017 }, | 1025 }, |
| 1018 ] | 1026 ] |
| 1019 } | 1027 } |
| 1020 ], | 1028 ], |
| 1021 ], | 1029 ], |
| 1022 }], | 1030 }], |
| 1023 ], | 1031 ], |
| 1024 } | 1032 } |
| OLD | NEW |