| 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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 'msvs_settings': { | 437 'msvs_settings': { |
| 438 'VCLinkerTool': { | 438 'VCLinkerTool': { |
| 439 'conditions': [ | 439 'conditions': [ |
| 440 ['incremental_chrome_dll==1', { | 440 ['incremental_chrome_dll==1', { |
| 441 'UseLibraryDependencyInputs': "true", | 441 'UseLibraryDependencyInputs': "true", |
| 442 }], | 442 }], |
| 443 ], | 443 ], |
| 444 }, | 444 }, |
| 445 }, | 445 }, |
| 446 'sources': [ | 446 'sources': [ |
| 447 '../apps/app_shim/app_shim_host_unittest.cc', |
| 447 '../extensions/common/event_filter_unittest.cc', | 448 '../extensions/common/event_filter_unittest.cc', |
| 448 '../extensions/common/matcher/regex_set_matcher_unittest.cc', | 449 '../extensions/common/matcher/regex_set_matcher_unittest.cc', |
| 449 '../extensions/common/matcher/string_pattern_unittest.cc', | 450 '../extensions/common/matcher/string_pattern_unittest.cc', |
| 450 '../extensions/common/matcher/substring_set_matcher_unittest.cc', | 451 '../extensions/common/matcher/substring_set_matcher_unittest.cc', |
| 451 '../extensions/common/matcher/url_matcher_factory_unittest.cc', | 452 '../extensions/common/matcher/url_matcher_factory_unittest.cc', |
| 452 '../extensions/common/matcher/url_matcher_unittest.cc', | 453 '../extensions/common/matcher/url_matcher_unittest.cc', |
| 453 '../extensions/common/url_pattern_set_unittest.cc', | 454 '../extensions/common/url_pattern_set_unittest.cc', |
| 454 '../extensions/common/url_pattern_unittest.cc', | 455 '../extensions/common/url_pattern_unittest.cc', |
| 455 'app/breakpad_mac_stubs.mm', | 456 'app/breakpad_mac_stubs.mm', |
| 456 'app/chrome_dll.rc', | 457 'app/chrome_dll.rc', |
| (...skipping 1955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2412 # more details. | 2413 # more details. |
| 2413 'DebugInformationFormat': '3', | 2414 'DebugInformationFormat': '3', |
| 2414 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', | 2415 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', |
| 2415 }, | 2416 }, |
| 2416 }, | 2417 }, |
| 2417 }, | 2418 }, |
| 2418 ], | 2419 ], |
| 2419 }], | 2420 }], |
| 2420 ], # 'conditions' | 2421 ], # 'conditions' |
| 2421 } | 2422 } |
| OLD | NEW |