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 24 matching lines...) Expand all Loading... |
35 'file/string_file_writer.cc', | 35 'file/string_file_writer.cc', |
36 'file/string_file_writer.h', | 36 'file/string_file_writer.h', |
37 'mac/checked_mach_address_range.cc', | 37 'mac/checked_mach_address_range.cc', |
38 'mac/checked_mach_address_range.h', | 38 'mac/checked_mach_address_range.h', |
39 'mac/launchd.h', | 39 'mac/launchd.h', |
40 'mac/launchd.mm', | 40 'mac/launchd.mm', |
41 'mac/mac_util.cc', | 41 'mac/mac_util.cc', |
42 'mac/mac_util.h', | 42 'mac/mac_util.h', |
43 'mac/service_management.cc', | 43 'mac/service_management.cc', |
44 'mac/service_management.h', | 44 'mac/service_management.h', |
| 45 'mac/xattr.cc', |
| 46 'mac/xattr.h', |
45 'mach/child_port.defs', | 47 'mach/child_port.defs', |
46 'mach/child_port_handshake.cc', | 48 'mach/child_port_handshake.cc', |
47 'mach/child_port_handshake.h', | 49 'mach/child_port_handshake.h', |
48 'mach/child_port_server.cc', | 50 'mach/child_port_server.cc', |
49 'mach/child_port_server.h', | 51 'mach/child_port_server.h', |
50 'mach/child_port_types.h', | 52 'mach/child_port_types.h', |
51 'mach/composite_mach_message_server.cc', | 53 'mach/composite_mach_message_server.cc', |
52 'mach/composite_mach_message_server.h', | 54 'mach/composite_mach_message_server.h', |
53 'mach/exc_client_variants.cc', | 55 'mach/exc_client_variants.cc', |
54 'mach/exc_client_variants.h', | 56 'mach/exc_client_variants.h', |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 ], | 238 ], |
237 'include_dirs': [ | 239 'include_dirs': [ |
238 '..', | 240 '..', |
239 ], | 241 ], |
240 'sources': [ | 242 'sources': [ |
241 'file/string_file_writer_test.cc', | 243 'file/string_file_writer_test.cc', |
242 'mac/checked_mach_address_range_test.cc', | 244 'mac/checked_mach_address_range_test.cc', |
243 'mac/launchd_test.mm', | 245 'mac/launchd_test.mm', |
244 'mac/mac_util_test.mm', | 246 'mac/mac_util_test.mm', |
245 'mac/service_management_test.mm', | 247 'mac/service_management_test.mm', |
| 248 'mac/xattr_test.cc', |
246 'mach/child_port_handshake_test.cc', | 249 'mach/child_port_handshake_test.cc', |
247 'mach/child_port_server_test.cc', | 250 'mach/child_port_server_test.cc', |
248 'mach/composite_mach_message_server_test.cc', | 251 'mach/composite_mach_message_server_test.cc', |
249 'mach/exc_client_variants_test.cc', | 252 'mach/exc_client_variants_test.cc', |
250 'mach/exc_server_variants_test.cc', | 253 'mach/exc_server_variants_test.cc', |
251 'mach/exception_behaviors_test.cc', | 254 'mach/exception_behaviors_test.cc', |
252 'mach/exception_ports_test.cc', | 255 'mach/exception_ports_test.cc', |
253 'mach/mach_extensions_test.cc', | 256 'mach/mach_extensions_test.cc', |
254 'mach/mach_message_server_test.cc', | 257 'mach/mach_message_server_test.cc', |
255 'mach/mach_message_test.cc', | 258 'mach/mach_message_test.cc', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 }, | 296 }, |
294 { | 297 { |
295 'target_name': 'util_test_multiprocess_exec_test_child', | 298 'target_name': 'util_test_multiprocess_exec_test_child', |
296 'type': 'executable', | 299 'type': 'executable', |
297 'sources': [ | 300 'sources': [ |
298 'test/multiprocess_exec_test_child.cc', | 301 'test/multiprocess_exec_test_child.cc', |
299 ], | 302 ], |
300 }, | 303 }, |
301 ], | 304 ], |
302 } | 305 } |
OLD | NEW |