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

Side by Side Diff: breakpad/breakpad.gyp

Issue 11198019: Allow building Official Chrome builds in Debug on ARM by avoiding overcommitting registers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use -marm instead of forcing optimization. Created 8 years, 2 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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
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