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

Side by Side Diff: media/media.gyp

Issue 12213027: Ignore C4267 size_t to int truncations in win64 media_unittests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # Override to dynamically link the PulseAudio library. 8 # Override to dynamically link the PulseAudio library.
9 'use_pulseaudio%': 0, 9 'use_pulseaudio%': 0,
10 # Override to dynamically link the cras (ChromeOS audio) library. 10 # Override to dynamically link the cras (ChromeOS audio) library.
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 'msvs_settings': { 661 'msvs_settings': {
662 'VCLinkerTool': { 662 'VCLinkerTool': {
663 'DelayLoadDLLs': [ 663 'DelayLoadDLLs': [
664 'mf.dll', 664 'mf.dll',
665 'mfplat.dll', 665 'mfplat.dll',
666 'mfreadwrite.dll', 666 'mfreadwrite.dll',
667 ], 667 ],
668 }, 668 },
669 }, 669 },
670 }, 670 },
671 # TODO(wolenetz): crbug.com/171009 fix size_t to int truncations 671 # TODO(wolenetz): Fix size_t to int truncations in win64. See
672 # in win64. 672 # http://crbug.com/171009
673 'conditions': [ 673 'conditions': [
674 ['target_arch == "x64"', { 674 ['target_arch == "x64"', {
675 'msvs_disabled_warnings': [ 4267, ], 675 'msvs_disabled_warnings': [ 4267, ],
676 }], 676 }],
677 ], 677 ],
678 }], 678 }],
679 ['proprietary_codecs==1 or branding=="Chrome"', { 679 ['proprietary_codecs==1 or branding=="Chrome"', {
680 'sources': [ 680 'sources': [
681 'mp4/aac.cc', 681 'mp4/aac.cc',
682 'mp4/aac.h', 682 'mp4/aac.h',
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
926 'sources': [ 926 'sources': [
927 'mp4/aac_unittest.cc', 927 'mp4/aac_unittest.cc',
928 'mp4/avc_unittest.cc', 928 'mp4/avc_unittest.cc',
929 'mp4/box_reader_unittest.cc', 929 'mp4/box_reader_unittest.cc',
930 'mp4/es_descriptor_unittest.cc', 930 'mp4/es_descriptor_unittest.cc',
931 'mp4/mp4_stream_parser_unittest.cc', 931 'mp4/mp4_stream_parser_unittest.cc',
932 'mp4/offset_byte_queue_unittest.cc', 932 'mp4/offset_byte_queue_unittest.cc',
933 'mp4/track_run_iterator_unittest.cc', 933 'mp4/track_run_iterator_unittest.cc',
934 ], 934 ],
935 }], 935 }],
936 # TODO(wolenetz): Fix size_t to int truncations in win64. See
937 # http://crbug.com/171009
938 ['OS=="win" and target_arch=="x64"', {
939 'msvs_disabled_warnings': [ 4267, ],
940 }],
936 ], 941 ],
937 }, 942 },
938 { 943 {
939 'target_name': 'media_test_support', 944 'target_name': 'media_test_support',
940 'type': 'static_library', 945 'type': 'static_library',
941 'dependencies': [ 946 'dependencies': [
942 'media', 947 'media',
943 '../base/base.gyp:base', 948 '../base/base.gyp:base',
944 '../skia/skia.gyp:skia', 949 '../skia/skia.gyp:skia',
945 '../testing/gmock.gyp:gmock', 950 '../testing/gmock.gyp:gmock',
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
1468 ], 1473 ],
1469 'sources': [ 1474 'sources': [
1470 'video/capture/screen/differ_block_sse2.cc', 1475 'video/capture/screen/differ_block_sse2.cc',
1471 'video/capture/screen/differ_block_sse2.h', 1476 'video/capture/screen/differ_block_sse2.h',
1472 ], 1477 ],
1473 }, # end of target differ_block_sse2 1478 }, # end of target differ_block_sse2
1474 ], 1479 ],
1475 }], 1480 }],
1476 ], 1481 ],
1477 } 1482 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698