| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 'stdlib/strlcpy.cc', | 128 'stdlib/strlcpy.cc', |
| 129 'stdlib/strlcpy.h', | 129 'stdlib/strlcpy.h', |
| 130 'stdlib/strnlen.cc', | 130 'stdlib/strnlen.cc', |
| 131 'stdlib/strnlen.h', | 131 'stdlib/strnlen.h', |
| 132 'string/split_string.cc', | 132 'string/split_string.cc', |
| 133 'string/split_string.h', | 133 'string/split_string.h', |
| 134 'synchronization/semaphore_mac.cc', | 134 'synchronization/semaphore_mac.cc', |
| 135 'synchronization/semaphore_posix.cc', | 135 'synchronization/semaphore_posix.cc', |
| 136 'synchronization/semaphore_win.cc', | 136 'synchronization/semaphore_win.cc', |
| 137 'synchronization/semaphore.h', | 137 'synchronization/semaphore.h', |
| 138 'thread/thread_log_messages.cc', |
| 139 'thread/thread_log_messages.h', |
| 138 'win/process_info.cc', | 140 'win/process_info.cc', |
| 139 'win/process_info.h', | 141 'win/process_info.h', |
| 140 'win/process_structs.h', | 142 'win/process_structs.h', |
| 141 'win/scoped_handle.cc', | 143 'win/scoped_handle.cc', |
| 142 'win/scoped_handle.h', | 144 'win/scoped_handle.h', |
| 143 'win/time.cc', | 145 'win/time.cc', |
| 144 'win/time.h', | 146 'win/time.h', |
| 145 ], | 147 ], |
| 146 'conditions': [ | 148 'conditions': [ |
| 147 ['OS=="mac"', { | 149 ['OS=="mac"', { |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 'stdlib/string_number_conversion_test.cc', | 322 'stdlib/string_number_conversion_test.cc', |
| 321 'stdlib/strlcpy_test.cc', | 323 'stdlib/strlcpy_test.cc', |
| 322 'stdlib/strnlen_test.cc', | 324 'stdlib/strnlen_test.cc', |
| 323 'string/split_string_test.cc', | 325 'string/split_string_test.cc', |
| 324 'synchronization/semaphore_test.cc', | 326 'synchronization/semaphore_test.cc', |
| 325 'test/mac/mach_multiprocess_test.cc', | 327 'test/mac/mach_multiprocess_test.cc', |
| 326 'test/multiprocess_exec_test.cc', | 328 'test/multiprocess_exec_test.cc', |
| 327 'test/multiprocess_posix_test.cc', | 329 'test/multiprocess_posix_test.cc', |
| 328 'test/paths_test.cc', | 330 'test/paths_test.cc', |
| 329 'test/scoped_temp_dir_test.cc', | 331 'test/scoped_temp_dir_test.cc', |
| 332 'thread/thread_log_messages_test.cc', |
| 330 'win/process_info_test.cc', | 333 'win/process_info_test.cc', |
| 331 'win/time_test.cc', | 334 'win/time_test.cc', |
| 332 ], | 335 ], |
| 333 'conditions': [ | 336 'conditions': [ |
| 334 ['OS=="mac"', { | 337 ['OS=="mac"', { |
| 335 'link_settings': { | 338 'link_settings': { |
| 336 'libraries': [ | 339 'libraries': [ |
| 337 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 340 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 338 ], | 341 ], |
| 339 }, | 342 }, |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 '/FIXED', | 399 '/FIXED', |
| 397 ], | 400 ], |
| 398 'TargetMachine': '1', # x86. | 401 'TargetMachine': '1', # x86. |
| 399 }, | 402 }, |
| 400 }, | 403 }, |
| 401 }, | 404 }, |
| 402 ] | 405 ] |
| 403 }], | 406 }], |
| 404 ], | 407 ], |
| 405 } | 408 } |
| OLD | NEW |