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 22 matching lines...) Expand all Loading... |
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/launchd.h', | 35 'mac/launchd.h', |
36 'mac/launchd.mm', | 36 'mac/launchd.mm', |
37 'mac/mac_util.cc', | 37 'mac/mac_util.cc', |
38 'mac/mac_util.h', | 38 'mac/mac_util.h', |
39 'mac/service_management.cc', | 39 'mac/service_management.cc', |
40 'mac/service_management.h', | 40 'mac/service_management.h', |
41 'mac/process_reader.cc', | 41 'mac/process_reader.cc', |
42 'mac/process_reader.h', | 42 'mac/process_reader.h', |
| 43 'mac/process_types.cc', |
| 44 'mac/process_types.h', |
| 45 'mac/process_types/all.proctype', |
| 46 'mac/process_types/crashreporterclient.proctype', |
| 47 'mac/process_types/custom.cc', |
| 48 'mac/process_types/dyld_images.proctype', |
| 49 'mac/process_types/flavors.h', |
| 50 'mac/process_types/internal.h', |
| 51 'mac/process_types/loader.proctype', |
| 52 'mac/process_types/nlist.proctype', |
| 53 'mac/process_types/traits.h', |
43 'mach/bootstrap.cc', | 54 'mach/bootstrap.cc', |
44 'mach/bootstrap.h', | 55 'mach/bootstrap.h', |
45 'mach/task_memory.cc', | 56 'mach/task_memory.cc', |
46 'mach/task_memory.h', | 57 'mach/task_memory.h', |
47 'misc/initialization_state.h', | 58 'misc/initialization_state.h', |
48 'misc/initialization_state_dcheck.cc', | 59 'misc/initialization_state_dcheck.cc', |
49 'misc/initialization_state_dcheck.h', | 60 'misc/initialization_state_dcheck.h', |
50 'misc/uuid.cc', | 61 'misc/uuid.cc', |
51 'misc/uuid.h', | 62 'misc/uuid.h', |
52 'numeric/checked_range.h', | 63 'numeric/checked_range.h', |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 110 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
100 ], | 111 ], |
101 'include_dirs': [ | 112 'include_dirs': [ |
102 '..', | 113 '..', |
103 ], | 114 ], |
104 'sources': [ | 115 'sources': [ |
105 'file/string_file_writer_test.cc', | 116 'file/string_file_writer_test.cc', |
106 'mac/launchd_test.mm', | 117 'mac/launchd_test.mm', |
107 'mac/mac_util_test.mm', | 118 'mac/mac_util_test.mm', |
108 'mac/process_reader_test.cc', | 119 'mac/process_reader_test.cc', |
| 120 'mac/process_types_test.cc', |
109 'mac/service_management_test.mm', | 121 'mac/service_management_test.mm', |
110 'mach/bootstrap_test.cc', | 122 'mach/bootstrap_test.cc', |
111 'mach/task_memory_test.cc', | 123 'mach/task_memory_test.cc', |
112 'misc/initialization_state_dcheck_test.cc', | 124 'misc/initialization_state_dcheck_test.cc', |
113 'misc/initialization_state_test.cc', | 125 'misc/initialization_state_test.cc', |
114 'misc/uuid_test.cc', | 126 'misc/uuid_test.cc', |
115 'numeric/checked_range_test.cc', | 127 'numeric/checked_range_test.cc', |
116 'numeric/in_range_cast_test.cc', | 128 'numeric/in_range_cast_test.cc', |
117 'posix/process_util_test.cc', | 129 'posix/process_util_test.cc', |
118 'stdlib/strlcpy_test.cc', | 130 'stdlib/strlcpy_test.cc', |
119 'test/mac/mach_multiprocess_test.cc', | 131 'test/mac/mach_multiprocess_test.cc', |
120 ], | 132 ], |
121 }, | 133 }, |
122 ], | 134 ], |
123 } | 135 } |
OLD | NEW |