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

Side by Side Diff: media/media.gyp

Issue 23566013: Mpeg2 TS stream parser for media source. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments from patch set #3 Created 7 years, 3 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
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 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 843 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 'mp4/cenc.cc', 854 'mp4/cenc.cc',
855 'mp4/cenc.h', 855 'mp4/cenc.h',
856 'mp4/es_descriptor.cc', 856 'mp4/es_descriptor.cc',
857 'mp4/es_descriptor.h', 857 'mp4/es_descriptor.h',
858 'mp4/mp4_stream_parser.cc', 858 'mp4/mp4_stream_parser.cc',
859 'mp4/mp4_stream_parser.h', 859 'mp4/mp4_stream_parser.h',
860 'mp4/offset_byte_queue.cc', 860 'mp4/offset_byte_queue.cc',
861 'mp4/offset_byte_queue.h', 861 'mp4/offset_byte_queue.h',
862 'mp4/track_run_iterator.cc', 862 'mp4/track_run_iterator.cc',
863 'mp4/track_run_iterator.h', 863 'mp4/track_run_iterator.h',
864 'mpeg2/es_parser.h',
865 'mpeg2/es_parser_adts.cc',
866 'mpeg2/es_parser_adts.h',
867 'mpeg2/es_parser_h264.cc',
868 'mpeg2/es_parser_h264.h',
869 'mpeg2/mpeg2ts_common.h',
870 'mpeg2/mpeg2ts_crc.cc',
871 'mpeg2/mpeg2ts_crc.h',
872 'mpeg2/mpeg2ts_pat.cc',
873 'mpeg2/mpeg2ts_pat.h',
874 'mpeg2/mpeg2ts_pes.cc',
875 'mpeg2/mpeg2ts_pes.h',
876 'mpeg2/mpeg2ts_pmt.cc',
877 'mpeg2/mpeg2ts_pmt.h',
878 'mpeg2/mpeg2ts_psi.cc',
879 'mpeg2/mpeg2ts_psi.h',
880 'mpeg2/mpeg2ts_stream_parser.cc',
881 'mpeg2/mpeg2ts_stream_parser.h',
882 'mpeg2/ts_packet.cc',
883 'mpeg2/ts_packet.h',
864 ], 884 ],
865 }], 885 }],
866 ['toolkit_uses_gtk==1', { 886 ['toolkit_uses_gtk==1', {
867 'dependencies': [ 887 'dependencies': [
868 '../build/linux/system.gyp:gtk', 888 '../build/linux/system.gyp:gtk',
869 ], 889 ],
870 }], 890 }],
871 # ios check is necessary due to http://crbug.com/172682. 891 # ios check is necessary due to http://crbug.com/172682.
872 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', { 892 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', {
873 'dependencies': [ 893 'dependencies': [
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
1120 }], 1140 }],
1121 ['proprietary_codecs==1 or branding=="Chrome"', { 1141 ['proprietary_codecs==1 or branding=="Chrome"', {
1122 'sources': [ 1142 'sources': [
1123 'mp4/aac_unittest.cc', 1143 'mp4/aac_unittest.cc',
1124 'mp4/avc_unittest.cc', 1144 'mp4/avc_unittest.cc',
1125 'mp4/box_reader_unittest.cc', 1145 'mp4/box_reader_unittest.cc',
1126 'mp4/es_descriptor_unittest.cc', 1146 'mp4/es_descriptor_unittest.cc',
1127 'mp4/mp4_stream_parser_unittest.cc', 1147 'mp4/mp4_stream_parser_unittest.cc',
1128 'mp4/offset_byte_queue_unittest.cc', 1148 'mp4/offset_byte_queue_unittest.cc',
1129 'mp4/track_run_iterator_unittest.cc', 1149 'mp4/track_run_iterator_unittest.cc',
1150 'mpeg2/mpeg2ts_stream_parser_unittest.cc',
1130 ], 1151 ],
1131 }], 1152 }],
1132 # TODO(wolenetz): Fix size_t to int truncations in win64. See 1153 # TODO(wolenetz): Fix size_t to int truncations in win64. See
1133 # http://crbug.com/171009 1154 # http://crbug.com/171009
1134 ['OS=="win" and target_arch=="x64"', { 1155 ['OS=="win" and target_arch=="x64"', {
1135 'msvs_disabled_warnings': [ 4267, ], 1156 'msvs_disabled_warnings': [ 4267, ],
1136 }], 1157 }],
1137 ], 1158 ],
1138 }, 1159 },
1139 { 1160 {
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
1590 ], 1611 ],
1591 }], 1612 }],
1592 ], 1613 ],
1593 }], 1614 }],
1594 ], 1615 ],
1595 }, 1616 },
1596 ], 1617 ],
1597 }], 1618 }],
1598 ], 1619 ],
1599 } 1620 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698