| 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 2303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2314 '../testing/gtest.gyp:gtest', | 2314 '../testing/gtest.gyp:gtest', |
| 2315 'test_support_common', | 2315 'test_support_common', |
| 2316 ], | 2316 ], |
| 2317 'include_dirs': [ | 2317 'include_dirs': [ |
| 2318 '..', | 2318 '..', |
| 2319 ], | 2319 ], |
| 2320 'sources': [ | 2320 'sources': [ |
| 2321 'app/breakpad_field_trial_win.cc', | 2321 'app/breakpad_field_trial_win.cc', |
| 2322 'app/breakpad_win.cc', | 2322 'app/breakpad_win.cc', |
| 2323 'app/breakpad_unittest_win.cc', | 2323 'app/breakpad_unittest_win.cc', |
| 2324 'app/delay_load_hook_win.cc', |
| 2325 'app/delay_load_hook_win.h', |
| 2326 'app/delay_load_hook_unittest_win.cc', |
| 2324 'app/crash_analysis_win.cc', | 2327 'app/crash_analysis_win.cc', |
| 2325 'app/hard_error_handler_win.cc', | 2328 'app/hard_error_handler_win.cc', |
| 2326 'app/run_all_unittests.cc' | 2329 'app/run_all_unittests.cc' |
| 2327 ], | 2330 ], |
| 2328 'conditions': [ | 2331 'conditions': [ |
| 2329 ['OS=="mac"', { | 2332 ['OS=="mac"', { |
| 2330 # TODO(mark): We really want this for all non-static library targets, | 2333 # TODO(mark): We really want this for all non-static library targets, |
| 2331 # but when we tried to pull it up to the common.gypi level, it broke | 2334 # but when we tried to pull it up to the common.gypi level, it broke |
| 2332 # other things like the ui, startup, and page_cycler tests. *shrug* | 2335 # other things like the ui, startup, and page_cycler tests. *shrug* |
| 2333 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, | 2336 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2402 # more details. | 2405 # more details. |
| 2403 'DebugInformationFormat': '3', | 2406 'DebugInformationFormat': '3', |
| 2404 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', | 2407 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', |
| 2405 }, | 2408 }, |
| 2406 }, | 2409 }, |
| 2407 }, | 2410 }, |
| 2408 ], | 2411 ], |
| 2409 }], | 2412 }], |
| 2410 ], # 'conditions' | 2413 ], # 'conditions' |
| 2411 } | 2414 } |
| OLD | NEW |