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

Side by Side Diff: breakpad/breakpad.gyp

Issue 59163005: Override minimum logging level for breakpad to error messages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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': [
11 # minidump_stackwalk and minidump_dump are tool-type executables that do 11 # minidump_stackwalk and minidump_dump are tool-type executables that do
12 # not build on iOS. 12 # not build on iOS.
13 ['OS!="ios" and OS!="win"', { 13 ['OS!="ios" and OS!="win"', {
14 'targets': [ 14 'targets': [
15 { 15 {
16 'target_name': 'minidump_stackwalk', 16 'target_name': 'minidump_stackwalk',
17 'type': 'executable', 17 'type': 'executable',
18 'includes': ['breakpad_tools.gypi'], 18 'includes': ['breakpad_tools.gypi'],
19 'defines': ['BPLOG_MINIMUM_SEVERITY=SEVERITY_ERROR'],
19 'sources': [ 20 'sources': [
20 'src/processor/basic_code_module.h', 21 'src/processor/basic_code_module.h',
21 'src/processor/basic_code_modules.cc', 22 'src/processor/basic_code_modules.cc',
22 'src/processor/basic_code_modules.h', 23 'src/processor/basic_code_modules.h',
23 'src/processor/basic_source_line_resolver.cc', 24 'src/processor/basic_source_line_resolver.cc',
24 'src/processor/binarystream.cc', 25 'src/processor/binarystream.cc',
25 'src/processor/binarystream.h', 26 'src/processor/binarystream.h',
26 'src/processor/call_stack.cc', 27 'src/processor/call_stack.cc',
27 'src/processor/cfi_frame_info.cc', 28 'src/processor/cfi_frame_info.cc',
28 'src/processor/cfi_frame_info.h', 29 'src/processor/cfi_frame_info.h',
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
858 'target_name': 'symupload', 859 'target_name': 'symupload',
859 'type': 'none', 860 'type': 'none',
860 'dependencies': [ 861 'dependencies': [
861 'breakpad_utilities', 862 'breakpad_utilities',
862 ], 863 ],
863 } 864 }
864 ], 865 ],
865 }], 866 }],
866 ], 867 ],
867 } 868 }
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