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

Side by Side Diff: breakpad/breakpad.gyp

Issue 165109: This adds a stub for the mac installer so that the gyp generation won't fail ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 4 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 | installer/mac/installer.gyp » ('j') | 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) 2009 The Chromium Authors. All rights reserved. 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 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/common.gypi', 10 '../build/common.gypi',
11 ], 11 ],
12 'target_defaults': { 12 'target_defaults': {
13 'include_dirs': [ 13 'include_dirs': [
14 '..', 14 '..',
15 '../..', 15 '../..',
16 '../../breakpad/src', 16 '../../breakpad/src',
17 ], 17 ],
18 }, 18 },
19 'conditions': [ 19 'conditions': [
20 ['OS=="mac"',
21 {
22 'targets': [
23 {
24 'target_name': 'reporter',
25 'type': 'none',
26 },
27 ],
28 },
29 ],
20 ['OS=="win"', 30 ['OS=="win"',
21 { 31 {
22 'targets': [ 32 'targets': [
23 { 33 {
24 'target_name': 'o3dBreakpad', 34 'target_name': 'o3dBreakpad',
25 'type': 'static_library', 35 'type': 'static_library',
26 'dependencies': [ 36 'dependencies': [
27 '../../breakpad/breakpad.gyp:breakpad_sender', 37 '../../breakpad/breakpad.gyp:breakpad_sender',
28 '../../breakpad/breakpad.gyp:breakpad_handler', 38 '../../breakpad/breakpad.gyp:breakpad_handler',
29 ], 39 ],
(...skipping 17 matching lines...) Expand all
47 'sources': [ 57 'sources': [
48 'win/crash_sender_win32.cc', 58 'win/crash_sender_win32.cc',
49 '../../<(breakpaddir)/client/windows/sender/crash_report_sender.cc ', 59 '../../<(breakpaddir)/client/windows/sender/crash_report_sender.cc ',
50 ], 60 ],
51 }, 61 },
52 ], 62 ],
53 }, 63 },
54 ], 64 ],
55 ], 65 ],
56 } 66 }
OLDNEW
« no previous file with comments | « no previous file | installer/mac/installer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698