| 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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 'src/common/string_conversion.cc', | 569 'src/common/string_conversion.cc', |
| 570 'src/common/string_conversion.h', | 570 'src/common/string_conversion.h', |
| 571 ], | 571 ], |
| 572 | 572 |
| 573 'conditions': [ | 573 'conditions': [ |
| 574 ['target_arch=="arm" and chromeos==1', { | 574 ['target_arch=="arm" and chromeos==1', { |
| 575 # Avoid running out of registers in | 575 # Avoid running out of registers in |
| 576 # linux_syscall_support.h:sys_clone()'s inline assembly. | 576 # linux_syscall_support.h:sys_clone()'s inline assembly. |
| 577 'cflags': ['-marm'], | 577 'cflags': ['-marm'], |
| 578 }], | 578 }], |
| 579 ['chromeos==1', { |
| 580 'defines': ['__CHROMEOS__'], |
| 581 }], |
| 579 ['OS=="android"', { | 582 ['OS=="android"', { |
| 580 'include_dirs': [ | 583 'include_dirs': [ |
| 581 'src/common/android/include', | 584 'src/common/android/include', |
| 582 ], | 585 ], |
| 583 'direct_dependent_settings': { | 586 'direct_dependent_settings': { |
| 584 'include_dirs': [ | 587 'include_dirs': [ |
| 585 'src/common/android/include', | 588 'src/common/android/include', |
| 586 ], | 589 ], |
| 587 }, | 590 }, |
| 588 'sources': [ | 591 'sources': [ |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 942 'breakpad_unittests_apk.isolate', | 945 'breakpad_unittests_apk.isolate', |
| 943 ], | 946 ], |
| 944 }, | 947 }, |
| 945 ] | 948 ] |
| 946 } | 949 } |
| 947 ], | 950 ], |
| 948 ], | 951 ], |
| 949 }], | 952 }], |
| 950 ], | 953 ], |
| 951 } | 954 } |
| OLD | NEW |