| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 'test/errors.cc', | 212 'test/errors.cc', |
| 213 'test/errors.h', | 213 'test/errors.h', |
| 214 'test/executable_path.h', | 214 'test/executable_path.h', |
| 215 'test/executable_path_mac.cc', | 215 'test/executable_path_mac.cc', |
| 216 'test/executable_path_win.cc', | 216 'test/executable_path_win.cc', |
| 217 'test/mac/dyld.h', | 217 'test/mac/dyld.h', |
| 218 'test/mac/mach_errors.cc', | 218 'test/mac/mach_errors.cc', |
| 219 'test/mac/mach_errors.h', | 219 'test/mac/mach_errors.h', |
| 220 'test/mac/mach_multiprocess.cc', | 220 'test/mac/mach_multiprocess.cc', |
| 221 'test/mac/mach_multiprocess.h', | 221 'test/mac/mach_multiprocess.h', |
| 222 'test/multiprocess.cc', | |
| 223 'test/multiprocess.h', | 222 'test/multiprocess.h', |
| 224 'test/multiprocess_exec.cc', | |
| 225 'test/multiprocess_exec.h', | 223 'test/multiprocess_exec.h', |
| 224 'test/multiprocess_exec_posix.cc', |
| 225 'test/multiprocess_exec_win.cc', |
| 226 'test/multiprocess_posix.cc', |
| 226 'test/scoped_temp_dir.cc', | 227 'test/scoped_temp_dir.cc', |
| 227 'test/scoped_temp_dir.h', | 228 'test/scoped_temp_dir.h', |
| 228 'test/scoped_temp_dir_posix.cc', | 229 'test/scoped_temp_dir_posix.cc', |
| 229 'test/scoped_temp_dir_win.cc', | 230 'test/scoped_temp_dir_win.cc', |
| 230 ], | 231 ], |
| 231 'conditions': [ | 232 'conditions': [ |
| 232 ['OS=="mac"', { | 233 ['OS=="mac"', { |
| 233 'link_settings': { | 234 'link_settings': { |
| 234 'libraries': [ | 235 'libraries': [ |
| 235 '$(SDKROOT)/usr/lib/libbsm.dylib', | 236 '$(SDKROOT)/usr/lib/libbsm.dylib', |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 'numeric/int128_test.cc', | 291 'numeric/int128_test.cc', |
| 291 'posix/process_info_test.cc', | 292 'posix/process_info_test.cc', |
| 292 'posix/symbolic_constants_posix_test.cc', | 293 'posix/symbolic_constants_posix_test.cc', |
| 293 'stdlib/string_number_conversion_test.cc', | 294 'stdlib/string_number_conversion_test.cc', |
| 294 'stdlib/strlcpy_test.cc', | 295 'stdlib/strlcpy_test.cc', |
| 295 'stdlib/strnlen_test.cc', | 296 'stdlib/strnlen_test.cc', |
| 296 'synchronization/semaphore_test.cc', | 297 'synchronization/semaphore_test.cc', |
| 297 'test/executable_path_test.cc', | 298 'test/executable_path_test.cc', |
| 298 'test/mac/mach_multiprocess_test.cc', | 299 'test/mac/mach_multiprocess_test.cc', |
| 299 'test/multiprocess_exec_test.cc', | 300 'test/multiprocess_exec_test.cc', |
| 300 'test/multiprocess_test.cc', | 301 'test/multiprocess_posix_test.cc', |
| 301 'test/scoped_temp_dir_test.cc', | 302 'test/scoped_temp_dir_test.cc', |
| 302 ], | 303 ], |
| 303 'conditions': [ | 304 'conditions': [ |
| 304 ['OS=="mac"', { | 305 ['OS=="mac"', { |
| 305 'link_settings': { | 306 'link_settings': { |
| 306 'libraries': [ | 307 'libraries': [ |
| 307 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 308 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 308 ], | 309 ], |
| 309 }, | 310 }, |
| 310 }], | 311 }], |
| 311 ], | 312 ], |
| 312 }, | 313 }, |
| 313 { | 314 { |
| 314 'target_name': 'util_test_multiprocess_exec_test_child', | 315 'target_name': 'util_test_multiprocess_exec_test_child', |
| 315 'type': 'executable', | 316 'type': 'executable', |
| 316 'sources': [ | 317 'sources': [ |
| 317 'test/multiprocess_exec_test_child.cc', | 318 'test/multiprocess_exec_test_child.cc', |
| 318 ], | 319 ], |
| 319 }, | 320 }, |
| 320 ], | 321 ], |
| 321 } | 322 } |
| OLD | NEW |