Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(437)

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 12091004: POSIX: re-enable strict aliasing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 2249 matching lines...) Expand 10 before | Expand all | Expand 10 after
2746 # more details. 2750 # more details.
2747 'DebugInformationFormat': '3', 2751 'DebugInformationFormat': '3',
2748 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', 2752 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb',
2749 }, 2753 },
2750 }, 2754 },
2751 }, 2755 },
2752 ], 2756 ],
2753 }], 2757 }],
2754 ], # 'conditions' 2758 ], # 'conditions'
2755 } 2759 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698