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

Side by Side Diff: breakpad/breakpad.gyp

Issue 131116: This adds in the GYP files needed for our GYP build. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 11 years, 6 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 | « DEPS_gyp ('k') | build/all.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': {
7 'chromium_code': 1,
8 },
9 'includes': [
10 '../build/common.gypi',
11 ],
12 'target_defaults': {
13 'include_dirs': [
14 '..',
15 '../..',
16 '../../breakpad/src',
17 ],
18 },
19 'conditions': [
20 ['OS=="win"',
21 {
22 'targets': [
23 {
24 'target_name': 'o3dBreakpad',
25 'type': 'static_library',
26 'dependencies': [
27 '../../breakpad/breakpad.gyp:breakpad_sender',
28 '../../breakpad/breakpad.gyp:breakpad_handler',
29 ],
30 'sources': [
31 'win/exception_handler_win32.cc',
32 'win/breakpad_config.cc',
33 'win/bluescreen_detector.cc',
34 ],
35 'direct_dependent_settings': {
36 'include_dirs': [
37 '../../breakpad/src',
38 ],
39 },
40 },
41 {
42 'target_name': 'reporter',
43 'type': 'executable',
44 'dependencies': [
45 'o3dBreakpad',
46 ],
47 'sources': [
48 'win/crash_sender_win32.cc',
49 '../../<(breakpaddir)/client/windows/sender/crash_report_sender.cc ',
50 ],
51 },
52 ],
53 },
54 ],
55 ],
56 }
OLDNEW
« no previous file with comments | « DEPS_gyp ('k') | build/all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698