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

Side by Side Diff: build/temp_gyp/breakpad.gyp

Issue 62127: Basic underpinnings of the gyp equivalent of the Linux SHARED=1 build:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 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 | « build/common.gypi ('k') | build/temp_gyp/googleurl.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 'includes': [ 6 'includes': [
7 '../common.gypi', 7 '../common.gypi',
8 ], 8 ],
9 'conditions': [ 9 'conditions': [
10 [ 'OS=="win"', { 10 [ 'OS=="win"', {
11 'targets': [ 11 'targets': [
12 { 12 {
13 'target_name': 'breakpad_handler', 13 'target_name': 'breakpad_handler',
14 'type': 'static_library', 14 'type': '<(library)',
15 'msvs_guid': 'B55CA863-B374-4BAF-95AC-539E4FA4C90C', 15 'msvs_guid': 'B55CA863-B374-4BAF-95AC-539E4FA4C90C',
16 'sources': [ 16 'sources': [
17 '../../breakpad/src/client/windows/crash_generation/client_info.cc', 17 '../../breakpad/src/client/windows/crash_generation/client_info.cc',
18 '../../breakpad/src/client/windows/crash_generation/client_info.h', 18 '../../breakpad/src/client/windows/crash_generation/client_info.h',
19 '../../breakpad/src/client/windows/crash_generation/crash_generation _client.cc', 19 '../../breakpad/src/client/windows/crash_generation/crash_generation _client.cc',
20 '../../breakpad/src/client/windows/crash_generation/crash_generation _client.h', 20 '../../breakpad/src/client/windows/crash_generation/crash_generation _client.h',
21 '../../breakpad/src/client/windows/crash_generation/crash_generation _server.cc', 21 '../../breakpad/src/client/windows/crash_generation/crash_generation _server.cc',
22 '../../breakpad/src/client/windows/crash_generation/crash_generation _server.h', 22 '../../breakpad/src/client/windows/crash_generation/crash_generation _server.h',
23 '../../breakpad/src/client/windows/handler/exception_handler.cc', 23 '../../breakpad/src/client/windows/handler/exception_handler.cc',
24 '../../breakpad/src/client/windows/handler/exception_handler.h', 24 '../../breakpad/src/client/windows/handler/exception_handler.h',
(...skipping 13 matching lines...) Expand all
38 ], 38 ],
39 }, 39 },
40 'direct_dependent_settings': { 40 'direct_dependent_settings': {
41 'include_dirs': [ 41 'include_dirs': [
42 '../../breakpad/src', 42 '../../breakpad/src',
43 ], 43 ],
44 }, 44 },
45 }, 45 },
46 { 46 {
47 'target_name': 'breakpad_sender', 47 'target_name': 'breakpad_sender',
48 'type': 'static_library', 48 'type': '<(library)',
49 'msvs_guid': '9946A048-043B-4F8F-9E07-9297B204714C', 49 'msvs_guid': '9946A048-043B-4F8F-9E07-9297B204714C',
50 'sources': [ 50 'sources': [
51 '../../breakpad/src/client/windows/sender/crash_report_sender.cc', 51 '../../breakpad/src/client/windows/sender/crash_report_sender.cc',
52 '../../breakpad/src/common/windows/http_upload.cc', 52 '../../breakpad/src/common/windows/http_upload.cc',
53 '../../breakpad/src/client/windows/sender/crash_report_sender.h', 53 '../../breakpad/src/client/windows/sender/crash_report_sender.h',
54 '../../breakpad/src/common/windows/http_upload.h', 54 '../../breakpad/src/common/windows/http_upload.h',
55 ], 55 ],
56 'include_dirs': [ 56 'include_dirs': [
57 '../../breakpad/src', 57 '../../breakpad/src',
58 ], 58 ],
59 'link_settings': { 59 'link_settings': {
60 'libraries': [ 60 'libraries': [
61 '-lurlmon.lib', 61 '-lurlmon.lib',
62 ], 62 ],
63 }, 63 },
64 'direct_dependent_settings': { 64 'direct_dependent_settings': {
65 'include_dirs': [ 65 'include_dirs': [
66 '../../breakpad/src', 66 '../../breakpad/src',
67 ], 67 ],
68 }, 68 },
69 }, 69 },
70 ], 70 ],
71 }], 71 }],
72 ], 72 ],
73 } 73 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | build/temp_gyp/googleurl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698