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 25 matching lines...) Expand all Loading... |
36 'dependencies': [ | 36 'dependencies': [ |
37 'tool_support', | 37 'tool_support', |
38 '../compat/compat.gyp:compat', | 38 '../compat/compat.gyp:compat', |
39 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 39 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
40 '../util/util.gyp:util', | 40 '../util/util.gyp:util', |
41 ], | 41 ], |
42 'include_dirs': [ | 42 'include_dirs': [ |
43 '..', | 43 '..', |
44 ], | 44 ], |
45 'sources': [ | 45 'sources': [ |
46 'catch_exception_tool.cc', | 46 'mac/catch_exception_tool.cc', |
47 ], | 47 ], |
48 }, | 48 }, |
49 { | 49 { |
50 'target_name': 'exception_port_tool', | 50 'target_name': 'exception_port_tool', |
51 'type': 'executable', | 51 'type': 'executable', |
52 'dependencies': [ | 52 'dependencies': [ |
53 'tool_support', | 53 'tool_support', |
54 '../compat/compat.gyp:compat', | 54 '../compat/compat.gyp:compat', |
55 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 55 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
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 'mac/exception_port_tool.cc', |
63 ], | 63 ], |
64 }, | 64 }, |
65 { | 65 { |
66 'target_name': 'generate_dump', | 66 'target_name': 'generate_dump', |
67 'type': 'executable', | 67 'type': 'executable', |
68 'dependencies': [ | 68 'dependencies': [ |
69 'tool_support', | 69 'tool_support', |
70 '../compat/compat.gyp:compat', | 70 '../compat/compat.gyp:compat', |
71 '../minidump/minidump.gyp:minidump', | 71 '../minidump/minidump.gyp:minidump', |
72 '../snapshot/snapshot.gyp:snapshot', | 72 '../snapshot/snapshot.gyp:snapshot', |
(...skipping 19 matching lines...) Expand all Loading... |
92 'include_dirs': [ | 92 'include_dirs': [ |
93 '..', | 93 '..', |
94 ], | 94 ], |
95 'link_settings': { | 95 'link_settings': { |
96 'libraries': [ | 96 'libraries': [ |
97 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', | 97 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
98 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 98 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
99 ], | 99 ], |
100 }, | 100 }, |
101 'sources': [ | 101 'sources': [ |
102 'on_demand_service_tool.mm', | 102 'mac/on_demand_service_tool.mm', |
103 ], | 103 ], |
104 }, | 104 }, |
105 ], | 105 ], |
106 }, { | 106 }, { |
107 'targets': [], | 107 'targets': [], |
108 }], | 108 }], |
109 ], | 109 ], |
110 } | 110 } |
OLD | NEW |