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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 ], | 56 ], |
57 'include_dirs': [ | 57 'include_dirs': [ |
58 'src/common/mac', | 58 'src/common/mac', |
59 ], | 59 ], |
60 'sources': [ | 60 'sources': [ |
61 'src/client/mac/crash_generation/Inspector.mm', | 61 'src/client/mac/crash_generation/Inspector.mm', |
62 'src/client/mac/crash_generation/InspectorMain.mm', | 62 'src/client/mac/crash_generation/InspectorMain.mm', |
63 ], | 63 ], |
64 'link_settings': { | 64 'link_settings': { |
65 'libraries': [ | 65 'libraries': [ |
| 66 '$(SDKROOT)/System/Library/Frameworks/CoreServices.framework', |
66 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 67 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
67 ], | 68 ], |
68 } | 69 } |
69 }, | 70 }, |
70 { | 71 { |
71 'target_name': 'crash_report_sender', | 72 'target_name': 'crash_report_sender', |
72 'type': 'executable', | 73 'type': 'executable', |
73 'mac_bundle': 1, | 74 'mac_bundle': 1, |
74 'variables': { | 75 'variables': { |
75 'mac_real_dsym': 1, | 76 'mac_real_dsym': 1, |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 ], | 415 ], |
415 }], | 416 }], |
416 ], | 417 ], |
417 } | 418 } |
418 | 419 |
419 # Local Variables: | 420 # Local Variables: |
420 # tab-width:2 | 421 # tab-width:2 |
421 # indent-tabs-mode:nil | 422 # indent-tabs-mode:nil |
422 # End: | 423 # End: |
423 # vim: set expandtab tabstop=2 shiftwidth=2: | 424 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |