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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 'mach/bootstrap.h', | 63 'mach/bootstrap.h', |
64 'mach/mach_message_server.cc', | 64 'mach/mach_message_server.cc', |
65 'mach/mach_message_server.h', | 65 'mach/mach_message_server.h', |
66 'mach/task_memory.cc', | 66 'mach/task_memory.cc', |
67 'mach/task_memory.h', | 67 'mach/task_memory.h', |
68 'misc/initialization_state.h', | 68 'misc/initialization_state.h', |
69 'misc/initialization_state_dcheck.cc', | 69 'misc/initialization_state_dcheck.cc', |
70 'misc/initialization_state_dcheck.h', | 70 'misc/initialization_state_dcheck.h', |
71 'misc/scoped_forbid_return.cc', | 71 'misc/scoped_forbid_return.cc', |
72 'misc/scoped_forbid_return.h', | 72 'misc/scoped_forbid_return.h', |
| 73 'misc/symbolic_constants_common.h', |
73 'misc/uuid.cc', | 74 'misc/uuid.cc', |
74 'misc/uuid.h', | 75 'misc/uuid.h', |
75 'numeric/checked_range.h', | 76 'numeric/checked_range.h', |
76 'numeric/in_range_cast.h', | 77 'numeric/in_range_cast.h', |
77 'numeric/safe_assignment.h', | 78 'numeric/safe_assignment.h', |
78 'posix/process_util.h', | 79 'posix/process_util.h', |
79 'posix/process_util_mac.cc', | 80 'posix/process_util_mac.cc', |
| 81 'posix/symbolic_constants_posix.cc', |
| 82 'posix/symbolic_constants_posix.h', |
80 'stdlib/cxx.h', | 83 'stdlib/cxx.h', |
81 'stdlib/objc.h', | 84 'stdlib/objc.h', |
82 'stdlib/pointer_container.h', | 85 'stdlib/pointer_container.h', |
83 'stdlib/string_number_conversion.cc', | 86 'stdlib/string_number_conversion.cc', |
84 'stdlib/string_number_conversion.h', | 87 'stdlib/string_number_conversion.h', |
85 'stdlib/strlcpy.cc', | 88 'stdlib/strlcpy.cc', |
86 'stdlib/strlcpy.h', | 89 'stdlib/strlcpy.h', |
87 'stdlib/strnlen.cc', | 90 'stdlib/strnlen.cc', |
88 'stdlib/strnlen.h', | 91 'stdlib/strnlen.h', |
89 ], | 92 ], |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 'mach/bootstrap_test.cc', | 190 'mach/bootstrap_test.cc', |
188 'mach/mach_message_server_test.cc', | 191 'mach/mach_message_server_test.cc', |
189 'mach/task_memory_test.cc', | 192 'mach/task_memory_test.cc', |
190 'misc/initialization_state_dcheck_test.cc', | 193 'misc/initialization_state_dcheck_test.cc', |
191 'misc/initialization_state_test.cc', | 194 'misc/initialization_state_test.cc', |
192 'misc/scoped_forbid_return_test.cc', | 195 'misc/scoped_forbid_return_test.cc', |
193 'misc/uuid_test.cc', | 196 'misc/uuid_test.cc', |
194 'numeric/checked_range_test.cc', | 197 'numeric/checked_range_test.cc', |
195 'numeric/in_range_cast_test.cc', | 198 'numeric/in_range_cast_test.cc', |
196 'posix/process_util_test.cc', | 199 'posix/process_util_test.cc', |
| 200 'posix/symbolic_constants_posix_test.cc', |
197 'stdlib/string_number_conversion_test.cc', | 201 'stdlib/string_number_conversion_test.cc', |
198 'stdlib/strlcpy_test.cc', | 202 'stdlib/strlcpy_test.cc', |
199 'stdlib/strnlen_test.cc', | 203 'stdlib/strnlen_test.cc', |
200 'test/executable_path_test.cc', | 204 'test/executable_path_test.cc', |
201 'test/mac/mach_multiprocess_test.cc', | 205 'test/mac/mach_multiprocess_test.cc', |
202 'test/multiprocess_exec_test.cc', | 206 'test/multiprocess_exec_test.cc', |
203 'test/multiprocess_test.cc', | 207 'test/multiprocess_test.cc', |
204 ], | 208 ], |
205 }, | 209 }, |
206 { | 210 { |
207 'target_name': 'util_test_multiprocess_exec_test_child', | 211 'target_name': 'util_test_multiprocess_exec_test_child', |
208 'type': 'executable', | 212 'type': 'executable', |
209 'sources': [ | 213 'sources': [ |
210 'test/multiprocess_exec_test_child.cc', | 214 'test/multiprocess_exec_test_child.cc', |
211 ], | 215 ], |
212 }, | 216 }, |
213 ], | 217 ], |
214 } | 218 } |
OLD | NEW |