Chromium Code Reviews| 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 ['target_arch=="arm"', { |
|
Mark Mentovai
2012/08/16 12:34:59
Make this target_arch=="arm" && OS!="android" inst
yongsheng
2012/08/17 01:35:33
ok
| |
| 526 'cflags': ['-Wa,-mimplicit-it=always'], | 526 'cflags': ['-Wa,-mimplicit-it=always'], |
| 527 }], | 527 }], |
| 528 ['OS=="android"', { | 528 ['OS=="android"', { |
| 529 'sources!':[ | 529 'sources!':[ |
| 530 'src/common/linux/elf_core_dump.cc', | 530 'src/common/linux/elf_core_dump.cc', |
| 531 'src/common/linux/elf_core_dump.h', | 531 'src/common/linux/elf_core_dump.h', |
| 532 ], | 532 ], |
| 533 # Android NDK toolchain doesn't support it | |
|
Mark Mentovai
2012/08/16 12:34:59
It? What?
yongsheng
2012/08/17 01:35:33
yes, See the message:
Assembler messages:
Error: u
Mark Mentovai
2012/08/17 14:04:00
yongsheng wrote:
| |
| 534 'cflags!': ['-Wa,-mimplicit-it=always'], | |
| 533 }], | 535 }], |
| 534 ], | 536 ], |
| 535 | 537 |
| 536 'link_settings': { | 538 'link_settings': { |
| 537 'libraries': [ | 539 'libraries': [ |
| 538 '-ldl', | 540 '-ldl', |
| 539 ], | 541 ], |
| 540 }, | 542 }, |
| 541 | 543 |
| 542 'include_dirs': [ | 544 'include_dirs': [ |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 753 'include_dirs': [ | 755 'include_dirs': [ |
| 754 'src', | 756 'src', |
| 755 'src/client/mac/Framework', | 757 'src/client/mac/Framework', |
| 756 'src/common/mac', | 758 'src/common/mac', |
| 757 ], | 759 ], |
| 758 }, | 760 }, |
| 759 ], | 761 ], |
| 760 }], | 762 }], |
| 761 ], | 763 ], |
| 762 } | 764 } |
| OLD | NEW |