| 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 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 ['OS=="android"', { | 691 ['OS=="android"', { |
| 692 'libraries': [ | 692 'libraries': [ |
| 693 '-llog', | 693 '-llog', |
| 694 ], | 694 ], |
| 695 'include_dirs': [ | 695 'include_dirs': [ |
| 696 'src/common/android/include', | 696 'src/common/android/include', |
| 697 ], | 697 ], |
| 698 'sources': [ | 698 'sources': [ |
| 699 'src/common/android/breakpad_getcontext_unittest.cc', | 699 'src/common/android/breakpad_getcontext_unittest.cc', |
| 700 ], | 700 ], |
| 701 'variables': { |
| 702 'test_type': 'gtest', |
| 703 'test_suite_name': '<(_target_name)', |
| 704 'isolate_file': 'breakpad_unittests.isolate', |
| 705 }, |
| 706 'includes': [ '../build/android/test_runner.gypi' ], |
| 701 }], | 707 }], |
| 702 ], | 708 ], |
| 703 }, | 709 }, |
| 704 { | 710 { |
| 705 # GN version: //breakpad:linux_dumper_unittest_helper | 711 # GN version: //breakpad:linux_dumper_unittest_helper |
| 706 'target_name': 'linux_dumper_unittest_helper', | 712 'target_name': 'linux_dumper_unittest_helper', |
| 707 'type': 'executable', | 713 'type': 'executable', |
| 708 'dependencies': [ | 714 'dependencies': [ |
| 709 'breakpad_processor_support', | 715 'breakpad_processor_support', |
| 710 ], | 716 ], |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 974 'include_main_binary': 0, | 980 'include_main_binary': 0, |
| 975 }, | 981 }, |
| 976 'includes': [ | 982 'includes': [ |
| 977 '../build/android/native_app_dependencies.gypi' | 983 '../build/android/native_app_dependencies.gypi' |
| 978 ], | 984 ], |
| 979 } | 985 } |
| 980 ], | 986 ], |
| 981 }], | 987 }], |
| 982 ], | 988 ], |
| 983 } | 989 } |
| OLD | NEW |