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 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"', { | |
| 536 # Avoid running out of registers. | |
|
digit1
2012/10/17 08:23:59
Can you put that in a chromeos-specific condition,
Ami GONE FROM CHROMIUM
2012/10/17 08:48:32
Done.
| |
| 537 'cflags': ['-marm'], | |
| 538 }], | |
| 535 ['OS=="android"', { | 539 ['OS=="android"', { |
| 536 'include_dirs': [ | 540 'include_dirs': [ |
| 537 'src/common/android/include', | 541 'src/common/android/include', |
| 538 ], | 542 ], |
| 539 'direct_dependent_settings': { | 543 'direct_dependent_settings': { |
| 540 'include_dirs': [ | 544 'include_dirs': [ |
| 541 'src/common/android/include', | 545 'src/common/android/include', |
| 542 ], | 546 ], |
| 543 }, | 547 }, |
| 544 'sources': [ | 548 'sources': [ |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 849 'include_dirs': [ | 853 'include_dirs': [ |
| 850 '<(DEPTH)/third_party/GTM', | 854 '<(DEPTH)/third_party/GTM', |
| 851 '<(DEPTH)/third_party/GTM/Foundation', | 855 '<(DEPTH)/third_party/GTM/Foundation', |
| 852 ], | 856 ], |
| 853 }, | 857 }, |
| 854 }, | 858 }, |
| 855 ], | 859 ], |
| 856 }], | 860 }], |
| 857 ], | 861 ], |
| 858 } | 862 } |
| OLD | NEW |