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

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: Updated comment & chromeos==1'd the hack 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" 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
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 }
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