| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 '..', | 93 '..', |
| 94 ], | 94 ], |
| 95 'link_settings': { | 95 'link_settings': { |
| 96 'libraries': [ | 96 'libraries': [ |
| 97 '$(SDKROOT)/usr/lib/libbsm.dylib', | 97 '$(SDKROOT)/usr/lib/libbsm.dylib', |
| 98 ], | 98 ], |
| 99 }, | 99 }, |
| 100 'sources': [ | 100 'sources': [ |
| 101 'test/errors.cc', | 101 'test/errors.cc', |
| 102 'test/errors.h', | 102 'test/errors.h', |
| 103 'test/executable_path.h', |
| 104 'test/executable_path_mac.cc', |
| 103 'test/mac/mach_errors.cc', | 105 'test/mac/mach_errors.cc', |
| 104 'test/mac/mach_errors.h', | 106 'test/mac/mach_errors.h', |
| 105 'test/mac/mach_multiprocess.cc', | 107 'test/mac/mach_multiprocess.cc', |
| 106 'test/mac/mach_multiprocess.h', | 108 'test/mac/mach_multiprocess.h', |
| 107 'test/multiprocess.cc', | 109 'test/multiprocess.cc', |
| 108 'test/multiprocess.h', | 110 'test/multiprocess.h', |
| 111 'test/multiprocess_exec.cc', |
| 112 'test/multiprocess_exec.h', |
| 109 'test/posix/close_multiple.cc', | 113 'test/posix/close_multiple.cc', |
| 110 'test/posix/close_multiple.h', | 114 'test/posix/close_multiple.h', |
| 111 ], | 115 ], |
| 112 }, | 116 }, |
| 113 { | 117 { |
| 114 'target_name': 'util_test', | 118 'target_name': 'util_test', |
| 115 'type': 'executable', | 119 'type': 'executable', |
| 116 'dependencies': [ | 120 'dependencies': [ |
| 117 'util', | 121 'util', |
| 118 'util_test_lib', | 122 'util_test_lib', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 137 'mach/task_memory_test.cc', | 141 'mach/task_memory_test.cc', |
| 138 'misc/initialization_state_dcheck_test.cc', | 142 'misc/initialization_state_dcheck_test.cc', |
| 139 'misc/initialization_state_test.cc', | 143 'misc/initialization_state_test.cc', |
| 140 'misc/scoped_forbid_return_test.cc', | 144 'misc/scoped_forbid_return_test.cc', |
| 141 'misc/uuid_test.cc', | 145 'misc/uuid_test.cc', |
| 142 'numeric/checked_range_test.cc', | 146 'numeric/checked_range_test.cc', |
| 143 'numeric/in_range_cast_test.cc', | 147 'numeric/in_range_cast_test.cc', |
| 144 'posix/process_util_test.cc', | 148 'posix/process_util_test.cc', |
| 145 'stdlib/strlcpy_test.cc', | 149 'stdlib/strlcpy_test.cc', |
| 146 'stdlib/strnlen_test.cc', | 150 'stdlib/strnlen_test.cc', |
| 151 'test/executable_path_test.cc', |
| 147 'test/mac/mach_multiprocess_test.cc', | 152 'test/mac/mach_multiprocess_test.cc', |
| 153 'test/multiprocess_exec_test.cc', |
| 148 'test/multiprocess_test.cc', | 154 'test/multiprocess_test.cc', |
| 149 ], | 155 ], |
| 150 }, | 156 }, |
| 157 { |
| 158 'target_name': 'util_test_multiprocess_exec_test_child', |
| 159 'type': 'executable', |
| 160 'sources': [ |
| 161 'test/multiprocess_exec_test_child.cc', |
| 162 ], |
| 163 }, |
| 151 ], | 164 ], |
| 152 } | 165 } |
| OLD | NEW |