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 27 matching lines...) Expand all Loading... |
38 '../util/util.gyp:util', | 38 '../util/util.gyp:util', |
39 ], | 39 ], |
40 'include_dirs': [ | 40 'include_dirs': [ |
41 '..', | 41 '..', |
42 ], | 42 ], |
43 'sources': [ | 43 'sources': [ |
44 'catch_exception_tool.cc', | 44 'catch_exception_tool.cc', |
45 ], | 45 ], |
46 }, | 46 }, |
47 { | 47 { |
| 48 'target_name': 'exception_port_tool', |
| 49 'type': 'executable', |
| 50 'dependencies': [ |
| 51 'tool_support', |
| 52 '../compat/compat.gyp:compat', |
| 53 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
| 54 '../util/util.gyp:util', |
| 55 ], |
| 56 'include_dirs': [ |
| 57 '..', |
| 58 ], |
| 59 'sources': [ |
| 60 'exception_port_tool.cc', |
| 61 ], |
| 62 }, |
| 63 { |
48 'target_name': 'on_demand_service_tool', | 64 'target_name': 'on_demand_service_tool', |
49 'type': 'executable', | 65 'type': 'executable', |
50 'dependencies': [ | 66 'dependencies': [ |
51 'tool_support', | 67 'tool_support', |
52 '../compat/compat.gyp:compat', | 68 '../compat/compat.gyp:compat', |
53 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 69 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
54 '../util/util.gyp:util', | 70 '../util/util.gyp:util', |
55 ], | 71 ], |
56 'include_dirs': [ | 72 'include_dirs': [ |
57 '..', | 73 '..', |
58 ], | 74 ], |
59 'sources': [ | 75 'sources': [ |
60 'on_demand_service_tool.mm', | 76 'on_demand_service_tool.mm', |
61 ], | 77 ], |
62 }, | 78 }, |
63 ], | 79 ], |
64 } | 80 } |
OLD | NEW |