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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 'net/http_headers.h', | 92 'net/http_headers.h', |
93 'net/http_multipart_builder.cc', | 93 'net/http_multipart_builder.cc', |
94 'net/http_multipart_builder.h', | 94 'net/http_multipart_builder.h', |
95 'net/http_transport.cc', | 95 'net/http_transport.cc', |
96 'net/http_transport.h', | 96 'net/http_transport.h', |
97 'net/http_transport_mac.mm', | 97 'net/http_transport_mac.mm', |
98 'numeric/checked_range.h', | 98 'numeric/checked_range.h', |
99 'numeric/in_range_cast.h', | 99 'numeric/in_range_cast.h', |
100 'numeric/int128.h', | 100 'numeric/int128.h', |
101 'numeric/safe_assignment.h', | 101 'numeric/safe_assignment.h', |
| 102 'posix/close_multiple.cc', |
| 103 'posix/close_multiple.h', |
102 'posix/close_stdio.cc', | 104 'posix/close_stdio.cc', |
103 'posix/close_stdio.h', | 105 'posix/close_stdio.h', |
104 'posix/drop_privileges.cc', | 106 'posix/drop_privileges.cc', |
105 'posix/drop_privileges.h', | 107 'posix/drop_privileges.h', |
106 'posix/process_info.h', | 108 'posix/process_info.h', |
107 'posix/process_info_mac.cc', | 109 'posix/process_info_mac.cc', |
108 'posix/symbolic_constants_posix.cc', | 110 'posix/symbolic_constants_posix.cc', |
109 'posix/symbolic_constants_posix.h', | 111 'posix/symbolic_constants_posix.h', |
110 'stdlib/cxx.h', | 112 'stdlib/cxx.h', |
111 'stdlib/objc.h', | 113 'stdlib/objc.h', |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 'test/executable_path_mac.cc', | 205 'test/executable_path_mac.cc', |
204 'test/mac/dyld.h', | 206 'test/mac/dyld.h', |
205 'test/mac/mach_errors.cc', | 207 'test/mac/mach_errors.cc', |
206 'test/mac/mach_errors.h', | 208 'test/mac/mach_errors.h', |
207 'test/mac/mach_multiprocess.cc', | 209 'test/mac/mach_multiprocess.cc', |
208 'test/mac/mach_multiprocess.h', | 210 'test/mac/mach_multiprocess.h', |
209 'test/multiprocess.cc', | 211 'test/multiprocess.cc', |
210 'test/multiprocess.h', | 212 'test/multiprocess.h', |
211 'test/multiprocess_exec.cc', | 213 'test/multiprocess_exec.cc', |
212 'test/multiprocess_exec.h', | 214 'test/multiprocess_exec.h', |
213 'test/posix/close_multiple.cc', | |
214 'test/posix/close_multiple.h', | |
215 ], | 215 ], |
216 'conditions': [ | 216 'conditions': [ |
217 ['OS=="mac"', { | 217 ['OS=="mac"', { |
218 'link_settings': { | 218 'link_settings': { |
219 'libraries': [ | 219 'libraries': [ |
220 '$(SDKROOT)/usr/lib/libbsm.dylib', | 220 '$(SDKROOT)/usr/lib/libbsm.dylib', |
221 ], | 221 ], |
222 }, | 222 }, |
223 }], | 223 }], |
224 ], | 224 ], |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 }, | 295 }, |
296 { | 296 { |
297 'target_name': 'util_test_multiprocess_exec_test_child', | 297 'target_name': 'util_test_multiprocess_exec_test_child', |
298 'type': 'executable', | 298 'type': 'executable', |
299 'sources': [ | 299 'sources': [ |
300 'test/multiprocess_exec_test_child.cc', | 300 'test/multiprocess_exec_test_child.cc', |
301 ], | 301 ], |
302 }, | 302 }, |
303 ], | 303 ], |
304 } | 304 } |
OLD | NEW |