| 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 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 477 'chrome_resources.gyp:chrome_strings', | 477 'chrome_resources.gyp:chrome_strings', |
| 478 ], | 478 ], |
| 479 # TODO(joi): Remove this section once the google_apis tests are | 479 # TODO(joi): Remove this section once the google_apis tests are |
| 480 # a separate unit test binary. | 480 # a separate unit test binary. |
| 481 'includes': [ | 481 'includes': [ |
| 482 '../google_apis/determine_use_official_keys.gypi', | 482 '../google_apis/determine_use_official_keys.gypi', |
| 483 ], | 483 ], |
| 484 'include_dirs': [ | 484 'include_dirs': [ |
| 485 '..', | 485 '..', |
| 486 ], | 486 ], |
| 487 'cflags': [ |
| 488 # TODO(phajdan.jr): Remove, http://crbug.com/32204 . |
| 489 '-fno-strict-aliasing', |
| 490 ], |
| 487 'defines': [ | 491 'defines': [ |
| 488 'CLD_WINDOWS', | 492 'CLD_WINDOWS', |
| 489 ], | 493 ], |
| 490 'direct_dependent_settings': { | 494 'direct_dependent_settings': { |
| 491 'defines': [ | 495 'defines': [ |
| 492 'CLD_WINDOWS', | 496 'CLD_WINDOWS', |
| 493 ], | 497 ], |
| 494 }, | 498 }, |
| 495 'msvs_settings': { | 499 'msvs_settings': { |
| 496 'VCLinkerTool': { | 500 'VCLinkerTool': { |
| (...skipping 2243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2740 # more details. | 2744 # more details. |
| 2741 'DebugInformationFormat': '3', | 2745 'DebugInformationFormat': '3', |
| 2742 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', | 2746 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', |
| 2743 }, | 2747 }, |
| 2744 }, | 2748 }, |
| 2745 }, | 2749 }, |
| 2746 ], | 2750 ], |
| 2747 }], | 2751 }], |
| 2748 ], # 'conditions' | 2752 ], # 'conditions' |
| 2749 } | 2753 } |
| OLD | NEW |