| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 'posix/symbolic_constants_posix.h', | 114 'posix/symbolic_constants_posix.h', |
| 115 'stdlib/cxx.h', | 115 'stdlib/cxx.h', |
| 116 'stdlib/objc.h', | 116 'stdlib/objc.h', |
| 117 'stdlib/pointer_container.h', | 117 'stdlib/pointer_container.h', |
| 118 'stdlib/string_number_conversion.cc', | 118 'stdlib/string_number_conversion.cc', |
| 119 'stdlib/string_number_conversion.h', | 119 'stdlib/string_number_conversion.h', |
| 120 'stdlib/strlcpy.cc', | 120 'stdlib/strlcpy.cc', |
| 121 'stdlib/strlcpy.h', | 121 'stdlib/strlcpy.h', |
| 122 'stdlib/strnlen.cc', | 122 'stdlib/strnlen.cc', |
| 123 'stdlib/strnlen.h', | 123 'stdlib/strnlen.h', |
| 124 'synchronization/semaphore.cc', | 124 'synchronization/semaphore_mac.cc', |
| 125 'synchronization/semaphore_posix.cc', |
| 126 'synchronization/semaphore_win.cc', |
| 125 'synchronization/semaphore.h', | 127 'synchronization/semaphore.h', |
| 126 'win/scoped_handle.cc', | 128 'win/scoped_handle.cc', |
| 127 'win/scoped_handle.h', | 129 'win/scoped_handle.h', |
| 128 ], | 130 ], |
| 129 'conditions': [ | 131 'conditions': [ |
| 130 ['OS=="mac"', { | 132 ['OS=="mac"', { |
| 131 'conditions': [ | 133 'conditions': [ |
| 132 ['GENERATOR=="ninja"', { | 134 ['GENERATOR=="ninja"', { |
| 133 # ninja’s rules can’t deal with sources that have paths relative | 135 # ninja’s rules can’t deal with sources that have paths relative |
| 134 # to environment variables like SDKROOT. Copy the .defs files out | 136 # to environment variables like SDKROOT. Copy the .defs files out |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 }, | 315 }, |
| 314 { | 316 { |
| 315 'target_name': 'util_test_multiprocess_exec_test_child', | 317 'target_name': 'util_test_multiprocess_exec_test_child', |
| 316 'type': 'executable', | 318 'type': 'executable', |
| 317 'sources': [ | 319 'sources': [ |
| 318 'test/multiprocess_exec_test_child.cc', | 320 'test/multiprocess_exec_test_child.cc', |
| 319 ], | 321 ], |
| 320 }, | 322 }, |
| 321 ], | 323 ], |
| 322 } | 324 } |
| OLD | NEW |