| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |