OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': [ |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 'variables': { | 49 'variables': { |
50 'mac_real_dsym': 1, | 50 'mac_real_dsym': 1, |
51 }, | 51 }, |
52 'dependencies': [ | 52 'dependencies': [ |
53 'breakpad_utilities', | 53 'breakpad_utilities', |
54 ], | 54 ], |
55 'include_dirs': [ | 55 'include_dirs': [ |
56 'src/common/mac', | 56 'src/common/mac', |
57 ], | 57 ], |
58 'sources': [ | 58 'sources': [ |
| 59 'src/client/mac/crash_generation/ConfigFile.mm', |
59 'src/client/mac/crash_generation/Inspector.mm', | 60 'src/client/mac/crash_generation/Inspector.mm', |
60 'src/client/mac/crash_generation/InspectorMain.mm', | 61 'src/client/mac/crash_generation/InspectorMain.mm', |
61 ], | 62 ], |
62 'link_settings': { | 63 'link_settings': { |
63 'libraries': [ | 64 'libraries': [ |
64 '$(SDKROOT)/System/Library/Frameworks/CoreServices.framework', | 65 '$(SDKROOT)/System/Library/Frameworks/CoreServices.framework', |
65 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 66 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
66 ], | 67 ], |
67 } | 68 } |
68 }, | 69 }, |
69 { | 70 { |
70 'target_name': 'crash_report_sender', | 71 'target_name': 'crash_report_sender', |
71 'type': 'executable', | 72 'type': 'executable', |
72 'mac_bundle': 1, | 73 'mac_bundle': 1, |
73 'variables': { | 74 'variables': { |
74 'mac_real_dsym': 1, | 75 'mac_real_dsym': 1, |
75 }, | 76 }, |
76 'include_dirs': [ | 77 'include_dirs': [ |
77 'src/common/mac', | 78 'src/common/mac', |
78 ], | 79 ], |
79 'sources': [ | 80 'sources': [ |
80 'src/common/mac/HTTPMultipartUpload.m', | 81 'src/common/mac/HTTPMultipartUpload.m', |
81 'src/client/mac/sender/crash_report_sender.m', | 82 'src/client/mac/sender/crash_report_sender.m', |
| 83 'src/client/mac/sender/uploader.m', |
82 'src/common/mac/GTMLogger.m', | 84 'src/common/mac/GTMLogger.m', |
83 ], | 85 ], |
84 'mac_bundle_resources': [ | 86 'mac_bundle_resources': [ |
85 'src/client/mac/sender/English.lproj/Localizable.strings', | 87 'src/client/mac/sender/English.lproj/Localizable.strings', |
86 'src/client/mac/sender/crash_report_sender.icns', | 88 'src/client/mac/sender/crash_report_sender.icns', |
87 'src/client/mac/sender/Breakpad.xib', | 89 'src/client/mac/sender/Breakpad.xib', |
88 'src/client/mac/sender/crash_report_sender-Info.plist', | 90 'src/client/mac/sender/crash_report_sender-Info.plist', |
89 ], | 91 ], |
90 'mac_bundle_resources!': [ | 92 'mac_bundle_resources!': [ |
91 'src/client/mac/sender/crash_report_sender-Info.plist', | 93 'src/client/mac/sender/crash_report_sender-Info.plist', |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 | 431 |
430 'include_dirs': [ | 432 'include_dirs': [ |
431 '..', | 433 '..', |
432 'src', | 434 'src', |
433 ], | 435 ], |
434 }, | 436 }, |
435 ], | 437 ], |
436 }], | 438 }], |
437 ], | 439 ], |
438 } | 440 } |
OLD | NEW |