Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(701)

Side by Side Diff: breakpad/breakpad.gyp

Issue 10824330: Disable compiler option 'mimplicit-it' for Android ARM (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: refine the comment Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698