Chromium Code Reviews| 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 in wi n64. | |
|
DaleCurtis
2013/01/29 23:40:47
http://crbug.com/, should wrap to 80 chars.
wolenetz
2013/01/30 00:05:05
Done.
| |
| 673 'conditions': [ | |
| 674 ['target_arch == "x64"', { | |
| 675 'msvs_disabled_warnings': [ 4267, ], | |
| 676 }], | |
| 677 ], | |
| 672 }], | 678 }], |
| 673 ['proprietary_codecs==1 or branding=="Chrome"', { | 679 ['proprietary_codecs==1 or branding=="Chrome"', { |
| 674 'sources': [ | 680 'sources': [ |
| 675 'mp4/aac.cc', | 681 'mp4/aac.cc', |
| 676 'mp4/aac.h', | 682 'mp4/aac.h', |
| 677 'mp4/avc.cc', | 683 'mp4/avc.cc', |
| 678 'mp4/avc.h', | 684 'mp4/avc.h', |
| 679 'mp4/box_definitions.cc', | 685 'mp4/box_definitions.cc', |
| 680 'mp4/box_definitions.h', | 686 'mp4/box_definitions.h', |
| 681 'mp4/box_reader.cc', | 687 'mp4/box_reader.cc', |
| (...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1456 ], | 1462 ], |
| 1457 'sources': [ | 1463 'sources': [ |
| 1458 'video/capture/screen/differ_block_sse2.cc', | 1464 'video/capture/screen/differ_block_sse2.cc', |
| 1459 'video/capture/screen/differ_block_sse2.h', | 1465 'video/capture/screen/differ_block_sse2.h', |
| 1460 ], | 1466 ], |
| 1461 }, # end of target differ_block_sse2 | 1467 }, # end of target differ_block_sse2 |
| 1462 ], | 1468 ], |
| 1463 }], | 1469 }], |
| 1464 ], | 1470 ], |
| 1465 } | 1471 } |
| OLD | NEW |