| 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 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 'src/common/linux/memory_mapped_file.cc', | 515 'src/common/linux/memory_mapped_file.cc', |
| 516 'src/common/linux/memory_mapped_file.h', | 516 'src/common/linux/memory_mapped_file.h', |
| 517 'src/common/linux/safe_readlink.cc', | 517 'src/common/linux/safe_readlink.cc', |
| 518 'src/common/linux/safe_readlink.h', | 518 'src/common/linux/safe_readlink.h', |
| 519 'src/common/memory.h', | 519 'src/common/memory.h', |
| 520 'src/common/string_conversion.cc', | 520 'src/common/string_conversion.cc', |
| 521 'src/common/string_conversion.h', | 521 'src/common/string_conversion.h', |
| 522 ], | 522 ], |
| 523 | 523 |
| 524 'conditions': [ | 524 'conditions': [ |
| 525 ['target_arch=="arm"', { | 525 # Android NDK toolchain doesn't support -mimplicit-it=always |
| 526 ['target_arch=="arm" and OS!="android"', { |
| 526 'cflags': ['-Wa,-mimplicit-it=always'], | 527 'cflags': ['-Wa,-mimplicit-it=always'], |
| 527 }], | 528 }], |
| 528 ['OS=="android"', { | 529 ['OS=="android"', { |
| 529 'sources!':[ | 530 'sources!':[ |
| 530 'src/common/linux/elf_core_dump.cc', | 531 'src/common/linux/elf_core_dump.cc', |
| 531 'src/common/linux/elf_core_dump.h', | 532 'src/common/linux/elf_core_dump.h', |
| 532 ], | 533 ], |
| 533 }], | 534 }], |
| 534 ], | 535 ], |
| 535 | 536 |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 753 'include_dirs': [ | 754 'include_dirs': [ |
| 754 'src', | 755 'src', |
| 755 'src/client/mac/Framework', | 756 'src/client/mac/Framework', |
| 756 'src/common/mac', | 757 'src/common/mac', |
| 757 ], | 758 ], |
| 758 }, | 759 }, |
| 759 ], | 760 ], |
| 760 }], | 761 }], |
| 761 ], | 762 ], |
| 762 } | 763 } |
| OLD | NEW |