| 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 'test/multiprocess_exec_win.cc', | 242 'test/multiprocess_exec_win.cc', |
| 243 'test/multiprocess_posix.cc', | 243 'test/multiprocess_posix.cc', |
| 244 'test/paths.cc', | 244 'test/paths.cc', |
| 245 'test/paths.h', | 245 'test/paths.h', |
| 246 'test/paths_mac.cc', | 246 'test/paths_mac.cc', |
| 247 'test/paths_win.cc', | 247 'test/paths_win.cc', |
| 248 'test/scoped_temp_dir.cc', | 248 'test/scoped_temp_dir.cc', |
| 249 'test/scoped_temp_dir.h', | 249 'test/scoped_temp_dir.h', |
| 250 'test/scoped_temp_dir_posix.cc', | 250 'test/scoped_temp_dir_posix.cc', |
| 251 'test/scoped_temp_dir_win.cc', | 251 'test/scoped_temp_dir_win.cc', |
| 252 'test/thread.cc', |
| 253 'test/thread.h', |
| 254 'test/thread_posix.cc', |
| 255 'test/thread_win.cc', |
| 252 ], | 256 ], |
| 253 'conditions': [ | 257 'conditions': [ |
| 254 ['OS=="mac"', { | 258 ['OS=="mac"', { |
| 255 'link_settings': { | 259 'link_settings': { |
| 256 'libraries': [ | 260 'libraries': [ |
| 257 '$(SDKROOT)/usr/lib/libbsm.dylib', | 261 '$(SDKROOT)/usr/lib/libbsm.dylib', |
| 258 ], | 262 ], |
| 259 }, | 263 }, |
| 260 }], | 264 }], |
| 261 ], | 265 ], |
| 262 }, | 266 }, |
| 263 { | 267 { |
| 264 'target_name': 'crashpad_util_test', | 268 'target_name': 'crashpad_util_test', |
| 265 'type': 'executable', | 269 'type': 'executable', |
| 266 'dependencies': [ | 270 'dependencies': [ |
| 267 'crashpad_util', | 271 'crashpad_util', |
| 268 'crashpad_util_test_lib', | 272 'crashpad_util_test_lib', |
| 269 'crashpad_util_test_multiprocess_exec_test_child', | 273 'crashpad_util_test_multiprocess_exec_test_child', |
| 270 '../compat/compat.gyp:crashpad_compat', | 274 '../compat/compat.gyp:crashpad_compat', |
| 271 '../third_party/gmock/gmock.gyp:gmock', | 275 '../third_party/gmock/gmock.gyp:gmock', |
| 272 '../third_party/gmock/gmock.gyp:gmock_main', | 276 '../third_party/gmock/gmock.gyp:gmock_main', |
| 273 '../third_party/gtest/gtest.gyp:gtest', | 277 '../third_party/gtest/gtest.gyp:gtest', |
| 274 '../third_party/mini_chromium/mini_chromium.gyp:base', | 278 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 275 ], | 279 ], |
| 276 'include_dirs': [ | 280 'include_dirs': [ |
| 277 '..', | 281 '..', |
| 278 ], | 282 ], |
| 279 'sources': [ | 283 'sources': [ |
| 284 'file/file_io_test.cc', |
| 280 'file/string_file_test.cc', | 285 'file/string_file_test.cc', |
| 281 'mac/checked_mach_address_range_test.cc', | 286 'mac/checked_mach_address_range_test.cc', |
| 282 'mac/launchd_test.mm', | 287 'mac/launchd_test.mm', |
| 283 'mac/mac_util_test.mm', | 288 'mac/mac_util_test.mm', |
| 284 'mac/service_management_test.mm', | 289 'mac/service_management_test.mm', |
| 285 'mac/xattr_test.cc', | 290 'mac/xattr_test.cc', |
| 286 'mach/child_port_handshake_test.cc', | 291 'mach/child_port_handshake_test.cc', |
| 287 'mach/child_port_server_test.cc', | 292 'mach/child_port_server_test.cc', |
| 288 'mach/composite_mach_message_server_test.cc', | 293 'mach/composite_mach_message_server_test.cc', |
| 289 'mach/exc_client_variants_test.cc', | 294 'mach/exc_client_variants_test.cc', |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 '/FIXED', | 396 '/FIXED', |
| 392 ], | 397 ], |
| 393 'TargetMachine': '1', # x86. | 398 'TargetMachine': '1', # x86. |
| 394 }, | 399 }, |
| 395 }, | 400 }, |
| 396 }, | 401 }, |
| 397 ] | 402 ] |
| 398 }], | 403 }], |
| 399 ], | 404 ], |
| 400 } | 405 } |
| OLD | NEW |