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, |
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 # See the License for the specific language governing permissions and | 12 # See the License for the specific language governing permissions and |
13 # limitations under the License. | 13 # limitations under the License. |
14 | 14 |
15 { | 15 { |
| 16 'includes': [ |
| 17 '../build/crashpad.gypi', |
| 18 ], |
16 'conditions': [ | 19 'conditions': [ |
17 ['OS=="mac"', { | 20 ['OS=="mac"', { |
18 'targets': [ | 21 'targets': [ |
19 { | 22 { |
20 'target_name': 'crashpad_handler', | 23 'target_name': 'crashpad_handler', |
21 'type': 'executable', | 24 'type': 'executable', |
22 'dependencies': [ | 25 'dependencies': [ |
23 '../client/client.gyp:client', | 26 '../client/client.gyp:client', |
24 '../compat/compat.gyp:compat', | 27 '../compat/compat.gyp:compat', |
25 '../minidump/minidump.gyp:minidump', | 28 '../minidump/minidump.gyp:minidump', |
(...skipping 14 matching lines...) Expand all Loading... |
40 'mac/exception_handler_server.h', | 43 'mac/exception_handler_server.h', |
41 'mac/main.cc', | 44 'mac/main.cc', |
42 ], | 45 ], |
43 }, | 46 }, |
44 ], | 47 ], |
45 }, { | 48 }, { |
46 'targets': [], | 49 'targets': [], |
47 }], | 50 }], |
48 ], | 51 ], |
49 } | 52 } |
OLD | NEW |