| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 'simulate_crash_win.h', | 54 'simulate_crash_win.h', |
| 55 ], | 55 ], |
| 56 'conditions': [ | 56 'conditions': [ |
| 57 ['OS=="win"', { | 57 ['OS=="win"', { |
| 58 'link_settings': { | 58 'link_settings': { |
| 59 'libraries': [ | 59 'libraries': [ |
| 60 '-lrpcrt4.lib', | 60 '-lrpcrt4.lib', |
| 61 ], | 61 ], |
| 62 }, | 62 }, |
| 63 }], | 63 }], |
| 64 ['OS!="mac"', { |
| 65 'sources!': [ |
| 66 'capture_context_mac.S', |
| 67 ], |
| 68 }], |
| 64 ], | 69 ], |
| 65 'direct_dependent_settings': { | 70 'direct_dependent_settings': { |
| 66 'include_dirs': [ | 71 'include_dirs': [ |
| 67 '..', | 72 '..', |
| 68 ], | 73 ], |
| 69 }, | 74 }, |
| 70 }, | 75 }, |
| 71 ], | 76 ], |
| 72 } | 77 } |
| OLD | NEW |