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