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

Side by Side Diff: media/media.gyp

Issue 12094047: Disable size_t to int conversion data loss warnings in media win64 builds (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Wrap comment within 80 columns 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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 'msvs_settings': { 662 'msvs_settings': {
663 'VCLinkerTool': { 663 'VCLinkerTool': {
664 'DelayLoadDLLs': [ 664 'DelayLoadDLLs': [
665 'mf.dll', 665 'mf.dll',
666 'mfplat.dll', 666 'mfplat.dll',
667 'mfreadwrite.dll', 667 'mfreadwrite.dll',
668 ], 668 ],
669 }, 669 },
670 }, 670 },
671 }, 671 },
672 # TODO(wolenetz): crbug.com/171009 fix size_t to int truncations
673 # in win64.
674 'conditions': [
675 ['target_arch == "x64"', {
676 'msvs_disabled_warnings': [ 4267, ],
677 }],
678 ],
672 }], 679 }],
673 ['proprietary_codecs==1 or branding=="Chrome"', { 680 ['proprietary_codecs==1 or branding=="Chrome"', {
674 'sources': [ 681 'sources': [
675 'mp4/aac.cc', 682 'mp4/aac.cc',
676 'mp4/aac.h', 683 'mp4/aac.h',
677 'mp4/avc.cc', 684 'mp4/avc.cc',
678 'mp4/avc.h', 685 'mp4/avc.h',
679 'mp4/box_definitions.cc', 686 'mp4/box_definitions.cc',
680 'mp4/box_definitions.h', 687 'mp4/box_definitions.h',
681 'mp4/box_reader.cc', 688 'mp4/box_reader.cc',
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after
1456 ], 1463 ],
1457 'sources': [ 1464 'sources': [
1458 'video/capture/screen/differ_block_sse2.cc', 1465 'video/capture/screen/differ_block_sse2.cc',
1459 'video/capture/screen/differ_block_sse2.h', 1466 'video/capture/screen/differ_block_sse2.h',
1460 ], 1467 ],
1461 }, # end of target differ_block_sse2 1468 }, # end of target differ_block_sse2
1462 ], 1469 ],
1463 }], 1470 }],
1464 ], 1471 ],
1465 } 1472 }
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