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 14 matching lines...) Expand all Loading... |
25 '..', | 25 '..', |
26 '<(INTERMEDIATE_DIR)', | 26 '<(INTERMEDIATE_DIR)', |
27 ], | 27 ], |
28 'sources': [ | 28 'sources': [ |
29 'file/fd_io.cc', | 29 'file/fd_io.cc', |
30 'file/fd_io.h', | 30 'file/fd_io.h', |
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', |
| 36 'mac/checked_mach_address_range.h', |
35 'mac/launchd.h', | 37 'mac/launchd.h', |
36 'mac/launchd.mm', | 38 'mac/launchd.mm', |
37 'mac/mac_util.cc', | 39 'mac/mac_util.cc', |
38 'mac/mac_util.h', | 40 'mac/mac_util.h', |
39 'mac/service_management.cc', | 41 'mac/service_management.cc', |
40 'mac/service_management.h', | 42 'mac/service_management.h', |
41 'mac/process_reader.cc', | 43 'mac/process_reader.cc', |
42 'mac/process_reader.h', | 44 'mac/process_reader.h', |
43 'mac/process_types.cc', | 45 'mac/process_types.cc', |
44 'mac/process_types.h', | 46 'mac/process_types.h', |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 '../compat/compat.gyp:compat', | 113 '../compat/compat.gyp:compat', |
112 '../third_party/gtest/gtest.gyp:gtest', | 114 '../third_party/gtest/gtest.gyp:gtest', |
113 '../third_party/gtest/gtest.gyp:gtest_main', | 115 '../third_party/gtest/gtest.gyp:gtest_main', |
114 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 116 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
115 ], | 117 ], |
116 'include_dirs': [ | 118 'include_dirs': [ |
117 '..', | 119 '..', |
118 ], | 120 ], |
119 'sources': [ | 121 'sources': [ |
120 'file/string_file_writer_test.cc', | 122 'file/string_file_writer_test.cc', |
| 123 'mac/checked_mach_address_range_test.cc', |
121 'mac/launchd_test.mm', | 124 'mac/launchd_test.mm', |
122 'mac/mac_util_test.mm', | 125 'mac/mac_util_test.mm', |
123 'mac/process_reader_test.cc', | 126 'mac/process_reader_test.cc', |
124 'mac/process_types_test.cc', | 127 'mac/process_types_test.cc', |
125 'mac/service_management_test.mm', | 128 'mac/service_management_test.mm', |
126 'mach/bootstrap_test.cc', | 129 'mach/bootstrap_test.cc', |
127 'mach/task_memory_test.cc', | 130 'mach/task_memory_test.cc', |
128 'misc/initialization_state_dcheck_test.cc', | 131 'misc/initialization_state_dcheck_test.cc', |
129 'misc/initialization_state_test.cc', | 132 'misc/initialization_state_test.cc', |
130 'misc/scoped_forbid_return_test.cc', | 133 'misc/scoped_forbid_return_test.cc', |
131 'misc/uuid_test.cc', | 134 'misc/uuid_test.cc', |
132 'numeric/checked_range_test.cc', | 135 'numeric/checked_range_test.cc', |
133 'numeric/in_range_cast_test.cc', | 136 'numeric/in_range_cast_test.cc', |
134 'posix/process_util_test.cc', | 137 'posix/process_util_test.cc', |
135 'stdlib/strlcpy_test.cc', | 138 'stdlib/strlcpy_test.cc', |
136 'test/mac/mach_multiprocess_test.cc', | 139 'test/mac/mach_multiprocess_test.cc', |
137 'test/multiprocess_test.cc', | 140 'test/multiprocess_test.cc', |
138 ], | 141 ], |
139 }, | 142 }, |
140 ], | 143 ], |
141 } | 144 } |
OLD | NEW |