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

Side by Side Diff: breakpad/breakpad.gyp

Issue 2182693004: Add macro definition __CHROMEOS__ for ChromeOS builds in GYP. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2785
Patch Set: Created 4 years, 5 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
« 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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
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