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

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: Clang warning fix 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
« no previous file with comments | « media/filters/stream_parser_factory.cc ('k') | media/mp2t/es_parser.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 825 matching lines...) Expand 10 before | Expand all | Expand 10 after
836 # TODO(wolenetz): Fix size_t to int truncations in win64. See 836 # TODO(wolenetz): Fix size_t to int truncations in win64. See
837 # http://crbug.com/171009 837 # http://crbug.com/171009
838 'conditions': [ 838 'conditions': [
839 ['target_arch=="x64"', { 839 ['target_arch=="x64"', {
840 'msvs_disabled_warnings': [ 4267, ], 840 'msvs_disabled_warnings': [ 4267, ],
841 }], 841 }],
842 ], 842 ],
843 }], 843 }],
844 ['proprietary_codecs==1 or branding=="Chrome"', { 844 ['proprietary_codecs==1 or branding=="Chrome"', {
845 'sources': [ 845 'sources': [
846 'mp2t/es_parser.h',
847 'mp2t/es_parser_adts.cc',
848 'mp2t/es_parser_adts.h',
849 'mp2t/es_parser_h264.cc',
850 'mp2t/es_parser_h264.h',
851 'mp2t/mp2t_common.h',
852 'mp2t/mp2t_stream_parser.cc',
853 'mp2t/mp2t_stream_parser.h',
854 'mp2t/ts_packet.cc',
855 'mp2t/ts_packet.h',
856 'mp2t/ts_section.h',
857 'mp2t/ts_section_pat.cc',
858 'mp2t/ts_section_pat.h',
859 'mp2t/ts_section_pes.cc',
860 'mp2t/ts_section_pes.h',
861 'mp2t/ts_section_pmt.cc',
862 'mp2t/ts_section_pmt.h',
863 'mp2t/ts_section_psi.cc',
864 'mp2t/ts_section_psi.h',
846 'mp4/aac.cc', 865 'mp4/aac.cc',
847 'mp4/aac.h', 866 'mp4/aac.h',
848 'mp4/avc.cc', 867 'mp4/avc.cc',
849 'mp4/avc.h', 868 'mp4/avc.h',
850 'mp4/box_definitions.cc', 869 'mp4/box_definitions.cc',
851 'mp4/box_definitions.h', 870 'mp4/box_definitions.h',
852 'mp4/box_reader.cc', 871 'mp4/box_reader.cc',
853 'mp4/box_reader.h', 872 'mp4/box_reader.h',
854 'mp4/cenc.cc', 873 'mp4/cenc.cc',
855 'mp4/cenc.h', 874 'mp4/cenc.h',
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1113 'audio/audio_low_latency_input_output_unittest.cc', 1132 'audio/audio_low_latency_input_output_unittest.cc',
1114 ], 1133 ],
1115 }], 1134 }],
1116 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', { 1135 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', {
1117 'sources': [ 1136 'sources': [
1118 'base/simd/convert_rgb_to_yuv_unittest.cc', 1137 'base/simd/convert_rgb_to_yuv_unittest.cc',
1119 ], 1138 ],
1120 }], 1139 }],
1121 ['proprietary_codecs==1 or branding=="Chrome"', { 1140 ['proprietary_codecs==1 or branding=="Chrome"', {
1122 'sources': [ 1141 'sources': [
1142 'mp2t/mp2t_stream_parser_unittest.cc',
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',
1130 ], 1150 ],
1131 }], 1151 }],
1132 # TODO(wolenetz): Fix size_t to int truncations in win64. See 1152 # TODO(wolenetz): Fix size_t to int truncations in win64. See
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
1590 ], 1610 ],
1591 }], 1611 }],
1592 ], 1612 ],
1593 }], 1613 }],
1594 ], 1614 ],
1595 }, 1615 },
1596 ], 1616 ],
1597 }], 1617 }],
1598 ], 1618 ],
1599 } 1619 }
OLDNEW
« no previous file with comments | « media/filters/stream_parser_factory.cc ('k') | media/mp2t/es_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698