| OLD | NEW |
| 1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 { | 4 { |
| 5 'targets': [ | 5 'targets': [ |
| 6 { | 6 { |
| 7 # This target contains mocks and test utilities that don't belong in | 7 # This target contains mocks and test utilities that don't belong in |
| 8 # production libraries but are used by more than one test executable. | 8 # production libraries but are used by more than one test executable. |
| 9 'target_name': 'test_support_common', | 9 'target_name': 'test_support_common', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 2322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2333 '../testing/gtest.gyp:gtest', | 2333 '../testing/gtest.gyp:gtest', |
| 2334 'test_support_common', | 2334 'test_support_common', |
| 2335 ], | 2335 ], |
| 2336 'include_dirs': [ | 2336 'include_dirs': [ |
| 2337 '..', | 2337 '..', |
| 2338 ], | 2338 ], |
| 2339 'sources': [ | 2339 'sources': [ |
| 2340 'app/breakpad_field_trial_win.cc', | 2340 'app/breakpad_field_trial_win.cc', |
| 2341 'app/breakpad_win.cc', | 2341 'app/breakpad_win.cc', |
| 2342 'app/breakpad_unittest_win.cc', | 2342 'app/breakpad_unittest_win.cc', |
| 2343 'app/delay_load_hook_win.cc', | |
| 2344 'app/delay_load_hook_win.h', | |
| 2345 'app/delay_load_hook_unittest_win.cc', | |
| 2346 'app/crash_analysis_win.cc', | 2343 'app/crash_analysis_win.cc', |
| 2347 'app/hard_error_handler_win.cc', | 2344 'app/hard_error_handler_win.cc', |
| 2348 'app/run_all_unittests.cc', | 2345 'app/run_all_unittests.cc', |
| 2349 'common/crash_keys.cc', | 2346 'common/crash_keys.cc', |
| 2350 'common/crash_keys.h', | 2347 'common/crash_keys.h', |
| 2351 ], | 2348 ], |
| 2352 'conditions': [ | 2349 'conditions': [ |
| 2353 ['OS=="mac"', { | 2350 ['OS=="mac"', { |
| 2354 # TODO(mark): We really want this for all non-static library targets, | 2351 # TODO(mark): We really want this for all non-static library targets, |
| 2355 # but when we tried to pull it up to the common.gypi level, it broke | 2352 # but when we tried to pull it up to the common.gypi level, it broke |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2425 # more details. | 2422 # more details. |
| 2426 'DebugInformationFormat': '3', | 2423 'DebugInformationFormat': '3', |
| 2427 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', | 2424 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', |
| 2428 }, | 2425 }, |
| 2429 }, | 2426 }, |
| 2430 }, | 2427 }, |
| 2431 ], | 2428 ], |
| 2432 }], | 2429 }], |
| 2433 ], # 'conditions' | 2430 ], # 'conditions' |
| 2434 } | 2431 } |
| OLD | NEW |