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', |
| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1114 }], | 1134 }], |
1115 ['proprietary_codecs==1 or branding=="Chrome"', { | 1135 ['proprietary_codecs==1 or branding=="Chrome"', { |
1116 'sources': [ | 1136 'sources': [ |
1117 'mp4/aac_unittest.cc', | 1137 'mp4/aac_unittest.cc', |
1118 'mp4/avc_unittest.cc', | 1138 'mp4/avc_unittest.cc', |
1119 'mp4/box_reader_unittest.cc', | 1139 'mp4/box_reader_unittest.cc', |
1120 'mp4/es_descriptor_unittest.cc', | 1140 'mp4/es_descriptor_unittest.cc', |
1121 'mp4/mp4_stream_parser_unittest.cc', | 1141 'mp4/mp4_stream_parser_unittest.cc', |
1122 'mp4/offset_byte_queue_unittest.cc', | 1142 'mp4/offset_byte_queue_unittest.cc', |
1123 'mp4/track_run_iterator_unittest.cc', | 1143 'mp4/track_run_iterator_unittest.cc', |
| 1144 'mpeg2/mpeg2ts_stream_parser_unittest.cc', |
1124 ], | 1145 ], |
1125 }], | 1146 }], |
1126 # TODO(wolenetz): Fix size_t to int truncations in win64. See | 1147 # TODO(wolenetz): Fix size_t to int truncations in win64. See |
1127 # http://crbug.com/171009 | 1148 # http://crbug.com/171009 |
1128 ['OS=="win" and target_arch=="x64"', { | 1149 ['OS=="win" and target_arch=="x64"', { |
1129 'msvs_disabled_warnings': [ 4267, ], | 1150 'msvs_disabled_warnings': [ 4267, ], |
1130 }], | 1151 }], |
1131 ], | 1152 ], |
1132 }, | 1153 }, |
1133 { | 1154 { |
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1676 'sources': [ | 1697 'sources': [ |
1677 'tools/media_bench/media_bench.cc', | 1698 'tools/media_bench/media_bench.cc', |
1678 ], | 1699 ], |
1679 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 1700 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
1680 'msvs_disabled_warnings': [ 4267, ], | 1701 'msvs_disabled_warnings': [ 4267, ], |
1681 }, | 1702 }, |
1682 ], | 1703 ], |
1683 }], | 1704 }], |
1684 ], | 1705 ], |
1685 } | 1706 } |
OLD | NEW |