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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 'src/common/memory.h', | 525 'src/common/memory.h', |
526 'src/common/string_conversion.cc', | 526 'src/common/string_conversion.cc', |
527 'src/common/string_conversion.h', | 527 'src/common/string_conversion.h', |
528 ], | 528 ], |
529 | 529 |
530 'conditions': [ | 530 'conditions': [ |
531 # Android NDK toolchain doesn't support -mimplicit-it=always | 531 # Android NDK toolchain doesn't support -mimplicit-it=always |
532 ['target_arch=="arm" and OS!="android"', { | 532 ['target_arch=="arm" and OS!="android"', { |
533 'cflags': ['-Wa,-mimplicit-it=always'], | 533 'cflags': ['-Wa,-mimplicit-it=always'], |
534 }], | 534 }], |
| 535 ['target_arch=="arm" and chromeos==1', { |
| 536 # Avoid running out of registers in |
| 537 # linux_syscall_support.h:sys_clone()'s inline assembly. |
| 538 'cflags': ['-marm'], |
| 539 }], |
535 ['OS=="android"', { | 540 ['OS=="android"', { |
536 'include_dirs': [ | 541 'include_dirs': [ |
537 'src/common/android/include', | 542 'src/common/android/include', |
538 ], | 543 ], |
539 'direct_dependent_settings': { | 544 'direct_dependent_settings': { |
540 'include_dirs': [ | 545 'include_dirs': [ |
541 'src/common/android/include', | 546 'src/common/android/include', |
542 ], | 547 ], |
543 }, | 548 }, |
544 'sources': [ | 549 'sources': [ |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
849 'include_dirs': [ | 854 'include_dirs': [ |
850 '<(DEPTH)/third_party/GTM', | 855 '<(DEPTH)/third_party/GTM', |
851 '<(DEPTH)/third_party/GTM/Foundation', | 856 '<(DEPTH)/third_party/GTM/Foundation', |
852 ], | 857 ], |
853 }, | 858 }, |
854 }, | 859 }, |
855 ], | 860 ], |
856 }], | 861 }], |
857 ], | 862 ], |
858 } | 863 } |
OLD | NEW |