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 11 matching lines...) Expand all Loading... |
22 'type': 'static_library', | 22 'type': 'static_library', |
23 'dependencies': [ | 23 'dependencies': [ |
24 '../compat/compat.gyp:crashpad_compat', | 24 '../compat/compat.gyp:crashpad_compat', |
25 '../third_party/mini_chromium/mini_chromium.gyp:base', | 25 '../third_party/mini_chromium/mini_chromium.gyp:base', |
26 ], | 26 ], |
27 'include_dirs': [ | 27 'include_dirs': [ |
28 '..', | 28 '..', |
29 '<(INTERMEDIATE_DIR)', | 29 '<(INTERMEDIATE_DIR)', |
30 ], | 30 ], |
31 'sources': [ | 31 'sources': [ |
| 32 'file/basename.h', |
| 33 'file/basename_posix.cc', |
| 34 'file/basename_win.cc', |
32 'file/file_io.cc', | 35 'file/file_io.cc', |
33 'file/file_io.h', | 36 'file/file_io.h', |
34 'file/file_io_posix.cc', | 37 'file/file_io_posix.cc', |
35 'file/file_io_win.cc', | 38 'file/file_io_win.cc', |
36 'file/file_reader.cc', | 39 'file/file_reader.cc', |
37 'file/file_reader.h', | 40 'file/file_reader.h', |
38 'file/file_seeker.cc', | 41 'file/file_seeker.cc', |
39 'file/file_seeker.h', | 42 'file/file_seeker.h', |
40 'file/file_writer.cc', | 43 'file/file_writer.cc', |
41 'file/file_writer.h', | 44 'file/file_writer.h', |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 'libraries': [ | 221 'libraries': [ |
219 '-lrpcrt4.lib', | 222 '-lrpcrt4.lib', |
220 '-lwinhttp.lib', | 223 '-lwinhttp.lib', |
221 ], | 224 ], |
222 }, | 225 }, |
223 }], | 226 }], |
224 ], | 227 ], |
225 }, | 228 }, |
226 ], | 229 ], |
227 } | 230 } |
OLD | NEW |