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 cras (ChromeOS audio) library. | 8 # Override to dynamically link the cras (ChromeOS audio) library. |
9 'use_cras%': 0, | 9 'use_cras%': 0, |
10 # Option e.g. for Linux distributions to link pulseaudio directly | 10 # Option e.g. for Linux distributions to link pulseaudio directly |
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
853 'mp4/cenc.cc', | 853 'mp4/cenc.cc', |
854 'mp4/cenc.h', | 854 'mp4/cenc.h', |
855 'mp4/es_descriptor.cc', | 855 'mp4/es_descriptor.cc', |
856 'mp4/es_descriptor.h', | 856 'mp4/es_descriptor.h', |
857 'mp4/mp4_stream_parser.cc', | 857 'mp4/mp4_stream_parser.cc', |
858 'mp4/mp4_stream_parser.h', | 858 'mp4/mp4_stream_parser.h', |
859 'mp4/offset_byte_queue.cc', | 859 'mp4/offset_byte_queue.cc', |
860 'mp4/offset_byte_queue.h', | 860 'mp4/offset_byte_queue.h', |
861 'mp4/track_run_iterator.cc', | 861 'mp4/track_run_iterator.cc', |
862 'mp4/track_run_iterator.h', | 862 'mp4/track_run_iterator.h', |
863 'mpeg2/es_parser.h', | |
acolwell GONE FROM CHROMIUM
2013/09/05 18:29:10
nit: How about making the directory mp2t to be con
damienv1
2013/09/09 23:29:45
I would rather use the mime type: mp2t. That seems
| |
864 'mpeg2/es_parser_adts.cc', | |
865 'mpeg2/es_parser_adts.h', | |
866 'mpeg2/es_parser_h264.cc', | |
867 'mpeg2/es_parser_h264.h', | |
868 'mpeg2/mpeg2ts_common.h', | |
869 'mpeg2/mpeg2ts_crc.cc', | |
870 'mpeg2/mpeg2ts_crc.h', | |
871 'mpeg2/mpeg2ts_pat.cc', | |
872 'mpeg2/mpeg2ts_pat.h', | |
873 'mpeg2/mpeg2ts_pes.cc', | |
874 'mpeg2/mpeg2ts_pes.h', | |
875 'mpeg2/mpeg2ts_pmt.cc', | |
876 'mpeg2/mpeg2ts_pmt.h', | |
877 'mpeg2/mpeg2ts_psi.cc', | |
878 'mpeg2/mpeg2ts_psi.h', | |
879 'mpeg2/mpeg2ts_stream_parser.cc', | |
880 'mpeg2/mpeg2ts_stream_parser.h', | |
881 'mpeg2/ts_packet.cc', | |
882 'mpeg2/ts_packet.h', | |
863 ], | 883 ], |
864 }], | 884 }], |
865 ['toolkit_uses_gtk==1', { | 885 ['toolkit_uses_gtk==1', { |
866 'dependencies': [ | 886 'dependencies': [ |
867 '../build/linux/system.gyp:gtk', | 887 '../build/linux/system.gyp:gtk', |
868 ], | 888 ], |
869 }], | 889 }], |
870 # ios check is necessary due to http://crbug.com/172682. | 890 # ios check is necessary due to http://crbug.com/172682. |
871 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', { | 891 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', { |
872 'dependencies': [ | 892 'dependencies': [ |
(...skipping 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1676 'sources': [ | 1696 'sources': [ |
1677 'tools/media_bench/media_bench.cc', | 1697 'tools/media_bench/media_bench.cc', |
1678 ], | 1698 ], |
1679 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 1699 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
1680 'msvs_disabled_warnings': [ 4267, ], | 1700 'msvs_disabled_warnings': [ 4267, ], |
1681 }, | 1701 }, |
1682 ], | 1702 ], |
1683 }], | 1703 }], |
1684 ], | 1704 ], |
1685 } | 1705 } |
OLD | NEW |