OLD | NEW |
1 # Copyright 2014 The Crashpad Authors. All rights reserved. | 1 # Copyright 2014 The Crashpad Authors. All rights reserved. |
2 # | 2 # |
3 # Licensed under the Apache License, Version 2.0 (the "License"); | 3 # Licensed under the Apache License, Version 2.0 (the "License"); |
4 # you may not use this file except in compliance with the License. | 4 # you may not use this file except in compliance with the License. |
5 # You may obtain a copy of the License at | 5 # You may obtain a copy of the License at |
6 # | 6 # |
7 # http://www.apache.org/licenses/LICENSE-2.0 | 7 # http://www.apache.org/licenses/LICENSE-2.0 |
8 # | 8 # |
9 # Unless required by applicable law or agreed to in writing, software | 9 # Unless required by applicable law or agreed to in writing, software |
10 # distributed under the License is distributed on an "AS IS" BASIS, | 10 # distributed under the License is distributed on an "AS IS" BASIS, |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 '../util/util.gyp:util', | 56 '../util/util.gyp:util', |
57 ], | 57 ], |
58 'include_dirs': [ | 58 'include_dirs': [ |
59 '..', | 59 '..', |
60 ], | 60 ], |
61 'sources': [ | 61 'sources': [ |
62 'exception_port_tool.cc', | 62 'exception_port_tool.cc', |
63 ], | 63 ], |
64 }, | 64 }, |
65 { | 65 { |
| 66 'target_name': 'generate_dump', |
| 67 'type': 'executable', |
| 68 'dependencies': [ |
| 69 'tool_support', |
| 70 '../compat/compat.gyp:compat', |
| 71 '../minidump/minidump.gyp:minidump', |
| 72 '../snapshot/snapshot.gyp:snapshot', |
| 73 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
| 74 '../util/util.gyp:util', |
| 75 ], |
| 76 'include_dirs': [ |
| 77 '..', |
| 78 ], |
| 79 'sources': [ |
| 80 'generate_dump.cc', |
| 81 ], |
| 82 }, |
| 83 { |
66 'target_name': 'on_demand_service_tool', | 84 'target_name': 'on_demand_service_tool', |
67 'type': 'executable', | 85 'type': 'executable', |
68 'dependencies': [ | 86 'dependencies': [ |
69 'tool_support', | 87 'tool_support', |
70 '../compat/compat.gyp:compat', | 88 '../compat/compat.gyp:compat', |
71 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 89 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
72 '../util/util.gyp:util', | 90 '../util/util.gyp:util', |
73 ], | 91 ], |
74 'include_dirs': [ | 92 'include_dirs': [ |
75 '..', | 93 '..', |
76 ], | 94 ], |
77 'link_settings': { | 95 'link_settings': { |
78 'libraries': [ | 96 'libraries': [ |
79 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', | 97 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
80 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 98 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
81 ], | 99 ], |
82 }, | 100 }, |
83 'sources': [ | 101 'sources': [ |
84 'on_demand_service_tool.mm', | 102 'on_demand_service_tool.mm', |
85 ], | 103 ], |
86 }, | 104 }, |
87 ], | 105 ], |
88 }, { | 106 }, { |
89 'targets': [], | 107 'targets': [], |
90 }], | 108 }], |
91 ], | 109 ], |
92 } | 110 } |
OLD | NEW |