| OLD | NEW |
| 1 # Copyright 2015 The Crashpad Authors. All rights reserved. | 1 # Copyright 2015 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 14 matching lines...) Expand all Loading... |
| 25 '../third_party/gtest/gtest.gyp:gtest', | 25 '../third_party/gtest/gtest.gyp:gtest', |
| 26 '../third_party/mini_chromium/mini_chromium.gyp:base', | 26 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 27 '../util/util.gyp:crashpad_util', | 27 '../util/util.gyp:crashpad_util', |
| 28 ], | 28 ], |
| 29 'include_dirs': [ | 29 'include_dirs': [ |
| 30 '..', | 30 '..', |
| 31 ], | 31 ], |
| 32 'sources': [ | 32 'sources': [ |
| 33 'errors.cc', | 33 'errors.cc', |
| 34 'errors.h', | 34 'errors.h', |
| 35 'file.cc', |
| 36 'file.h', |
| 35 'gtest_death_check.h', | 37 'gtest_death_check.h', |
| 36 'mac/dyld.h', | 38 'mac/dyld.h', |
| 37 'mac/mach_errors.cc', | 39 'mac/mach_errors.cc', |
| 38 'mac/mach_errors.h', | 40 'mac/mach_errors.h', |
| 39 'mac/mach_multiprocess.cc', | 41 'mac/mach_multiprocess.cc', |
| 40 'mac/mach_multiprocess.h', | 42 'mac/mach_multiprocess.h', |
| 41 'multiprocess.h', | 43 'multiprocess.h', |
| 42 'multiprocess_exec.h', | 44 'multiprocess_exec.h', |
| 43 'multiprocess_exec_posix.cc', | 45 'multiprocess_exec_posix.cc', |
| 44 'multiprocess_exec_win.cc', | 46 'multiprocess_exec_win.cc', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 70 'link_settings': { | 72 'link_settings': { |
| 71 'libraries': [ | 73 'libraries': [ |
| 72 '-lshell32.lib', | 74 '-lshell32.lib', |
| 73 ], | 75 ], |
| 74 }, | 76 }, |
| 75 }], | 77 }], |
| 76 ], | 78 ], |
| 77 }, | 79 }, |
| 78 ], | 80 ], |
| 79 } | 81 } |
| OLD | NEW |