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 2299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2310 ], | 2310 ], |
2311 'include_dirs': [ | 2311 'include_dirs': [ |
2312 '..', | 2312 '..', |
2313 ], | 2313 ], |
2314 'sources': [ | 2314 'sources': [ |
2315 'app/breakpad_field_trial_win.cc', | 2315 'app/breakpad_field_trial_win.cc', |
2316 'app/breakpad_win.cc', | 2316 'app/breakpad_win.cc', |
2317 'app/breakpad_unittest_win.cc', | 2317 'app/breakpad_unittest_win.cc', |
2318 'app/crash_analysis_win.cc', | 2318 'app/crash_analysis_win.cc', |
2319 'app/hard_error_handler_win.cc', | 2319 'app/hard_error_handler_win.cc', |
2320 'app/run_all_unittests.cc' | 2320 'app/run_all_unittests.cc', |
| 2321 'common/crash_keys.cc', |
| 2322 'common/crash_keys.h', |
2321 ], | 2323 ], |
2322 'conditions': [ | 2324 'conditions': [ |
2323 ['OS=="mac"', { | 2325 ['OS=="mac"', { |
2324 # TODO(mark): We really want this for all non-static library targets, | 2326 # TODO(mark): We really want this for all non-static library targets, |
2325 # but when we tried to pull it up to the common.gypi level, it broke | 2327 # but when we tried to pull it up to the common.gypi level, it broke |
2326 # other things like the ui, startup, and page_cycler tests. *shrug* | 2328 # other things like the ui, startup, and page_cycler tests. *shrug* |
2327 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, | 2329 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, |
2328 }], | 2330 }], |
2329 ['OS=="win"', { | 2331 ['OS=="win"', { |
2330 'dependencies': [ | 2332 'dependencies': [ |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2395 # more details. | 2397 # more details. |
2396 'DebugInformationFormat': '3', | 2398 'DebugInformationFormat': '3', |
2397 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', | 2399 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', |
2398 }, | 2400 }, |
2399 }, | 2401 }, |
2400 }, | 2402 }, |
2401 ], | 2403 ], |
2402 }], | 2404 }], |
2403 ], # 'conditions' | 2405 ], # 'conditions' |
2404 } | 2406 } |
OLD | NEW |