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

Side by Side Diff: chrome_frame/crash_reporting/crash_reporting.gyp

Issue 264068: Refactoring of crash reporting code in Chrome Frame... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 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
OLDNEW
(Empty)
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'includes': [
7 '../../build/common.gypi',
8 ],
9 'target_defaults': {
10 'include_dirs': [
11 # all our own includes are relative to src/
12 '../..',
13 ],
14 },
15 'targets': [
16 {
17 'target_name': 'crash_report',
18 'type': 'static_library',
19 'sources': [
20 'crash_report.cc',
21 'crash_report.h',
22 'vectored_handler-impl.h',
23 'vectored_handler.h',
24 ],
25 'conditions': [
26 ['OS=="win"', {
27 'dependencies': [
28 '../../breakpad/breakpad.gyp:breakpad_handler',
29 ],
30 }],
31 ],
32 },
33 ],
34 }
35
36 # vim: shiftwidth=2:et:ai:tabstop=2
37
38 # Local Variables:
39 # tab-width:2
40 # indent-tabs-mode:nil
41 # End:
42 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome_frame/crash_reporting/crash_report.cc ('k') | chrome_frame/crash_reporting/vectored_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698