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 20 matching lines...) Expand all Loading... |
31 'file/file_writer.cc', | 31 'file/file_writer.cc', |
32 'file/file_writer.h', | 32 'file/file_writer.h', |
33 'file/string_file_writer.cc', | 33 'file/string_file_writer.cc', |
34 'file/string_file_writer.h', | 34 'file/string_file_writer.h', |
35 'mac/checked_mach_address_range.cc', | 35 'mac/checked_mach_address_range.cc', |
36 'mac/checked_mach_address_range.h', | 36 'mac/checked_mach_address_range.h', |
37 'mac/launchd.h', | 37 'mac/launchd.h', |
38 'mac/launchd.mm', | 38 'mac/launchd.mm', |
39 'mac/mac_util.cc', | 39 'mac/mac_util.cc', |
40 'mac/mac_util.h', | 40 'mac/mac_util.h', |
| 41 'mac/mach_o_image_reader.cc', |
| 42 'mac/mach_o_image_reader.h', |
41 'mac/mach_o_image_segment_reader.cc', | 43 'mac/mach_o_image_segment_reader.cc', |
42 'mac/mach_o_image_segment_reader.h', | 44 'mac/mach_o_image_segment_reader.h', |
43 'mac/service_management.cc', | 45 'mac/service_management.cc', |
44 'mac/service_management.h', | 46 'mac/service_management.h', |
45 'mac/process_reader.cc', | 47 'mac/process_reader.cc', |
46 'mac/process_reader.h', | 48 'mac/process_reader.h', |
47 'mac/process_types.cc', | 49 'mac/process_types.cc', |
48 'mac/process_types.h', | 50 'mac/process_types.h', |
49 'mac/process_types/all.proctype', | 51 'mac/process_types/all.proctype', |
50 'mac/process_types/crashreporterclient.proctype', | 52 'mac/process_types/crashreporterclient.proctype', |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 124 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
123 ], | 125 ], |
124 'include_dirs': [ | 126 'include_dirs': [ |
125 '..', | 127 '..', |
126 ], | 128 ], |
127 'sources': [ | 129 'sources': [ |
128 'file/string_file_writer_test.cc', | 130 'file/string_file_writer_test.cc', |
129 'mac/checked_mach_address_range_test.cc', | 131 'mac/checked_mach_address_range_test.cc', |
130 'mac/launchd_test.mm', | 132 'mac/launchd_test.mm', |
131 'mac/mac_util_test.mm', | 133 'mac/mac_util_test.mm', |
| 134 'mac/mach_o_image_reader_test.cc', |
132 'mac/mach_o_image_segment_reader_test.cc', | 135 'mac/mach_o_image_segment_reader_test.cc', |
133 'mac/process_reader_test.cc', | 136 'mac/process_reader_test.cc', |
134 'mac/process_types_test.cc', | 137 'mac/process_types_test.cc', |
135 'mac/service_management_test.mm', | 138 'mac/service_management_test.mm', |
136 'mach/bootstrap_test.cc', | 139 'mach/bootstrap_test.cc', |
137 'mach/task_memory_test.cc', | 140 'mach/task_memory_test.cc', |
138 'misc/initialization_state_dcheck_test.cc', | 141 'misc/initialization_state_dcheck_test.cc', |
139 'misc/initialization_state_test.cc', | 142 'misc/initialization_state_test.cc', |
140 'misc/scoped_forbid_return_test.cc', | 143 'misc/scoped_forbid_return_test.cc', |
141 'misc/uuid_test.cc', | 144 'misc/uuid_test.cc', |
142 'numeric/checked_range_test.cc', | 145 'numeric/checked_range_test.cc', |
143 'numeric/in_range_cast_test.cc', | 146 'numeric/in_range_cast_test.cc', |
144 'posix/process_util_test.cc', | 147 'posix/process_util_test.cc', |
145 'stdlib/strlcpy_test.cc', | 148 'stdlib/strlcpy_test.cc', |
146 'stdlib/strnlen_test.cc', | 149 'stdlib/strnlen_test.cc', |
147 'test/mac/mach_multiprocess_test.cc', | 150 'test/mac/mach_multiprocess_test.cc', |
148 'test/multiprocess_test.cc', | 151 'test/multiprocess_test.cc', |
149 ], | 152 ], |
150 }, | 153 }, |
151 ], | 154 ], |
152 } | 155 } |
OLD | NEW |