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

Side by Side Diff: media/media.gyp

Issue 216423008: Adds GYP variable to enable MPEG2TS stream parsing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Better flag description Created 6 years, 9 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 | « build/common.gypi ('k') | no next file » | 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 857 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 'formats/mp4/track_run_iterator.h', 868 'formats/mp4/track_run_iterator.h',
869 'formats/mpeg/adts_constants.cc', 869 'formats/mpeg/adts_constants.cc',
870 'formats/mpeg/adts_constants.h', 870 'formats/mpeg/adts_constants.h',
871 'formats/mpeg/adts_stream_parser.cc', 871 'formats/mpeg/adts_stream_parser.cc',
872 'formats/mpeg/adts_stream_parser.h', 872 'formats/mpeg/adts_stream_parser.h',
873 'formats/mpeg/mp3_stream_parser.cc', 873 'formats/mpeg/mp3_stream_parser.cc',
874 'formats/mpeg/mp3_stream_parser.h', 874 'formats/mpeg/mp3_stream_parser.h',
875 'formats/mpeg/mpeg_audio_stream_parser_base.cc', 875 'formats/mpeg/mpeg_audio_stream_parser_base.cc',
876 'formats/mpeg/mpeg_audio_stream_parser_base.h', 876 'formats/mpeg/mpeg_audio_stream_parser_base.h',
877 ], 877 ],
878 'conditions': [
879 ['enable_mpeg2ts_stream_parser==1', {
880 'defines': [
881 'ENABLE_MPEG2TS_STREAM_PARSER',
882 ],
883 }],
884 ],
878 }], 885 }],
879 ['toolkit_uses_gtk==1', { 886 ['toolkit_uses_gtk==1', {
880 'dependencies': [ 887 'dependencies': [
881 '../build/linux/system.gyp:gtk', 888 '../build/linux/system.gyp:gtk',
882 ], 889 ],
883 }], 890 }],
884 ['target_arch=="ia32" or target_arch=="x64"', { 891 ['target_arch=="ia32" or target_arch=="x64"', {
885 'dependencies': [ 892 'dependencies': [
886 'media_asm', 893 'media_asm',
887 'media_mmx', 894 'media_mmx',
(...skipping 804 matching lines...) Expand 10 before | Expand all | Expand 10 after
1692 ], 1699 ],
1693 }], 1700 }],
1694 ], 1701 ],
1695 }], 1702 }],
1696 ], 1703 ],
1697 }, 1704 },
1698 ], 1705 ],
1699 }], 1706 }],
1700 ], 1707 ],
1701 } 1708 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698