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

Side by Side Diff: media/media.gyp

Issue 1624703002: Implement support for vp9 in ISO-BMFF (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a flag ENABLE_MP4_VP8_VP9_DEMUXING for this change. Created 4 years, 10 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 { 56 {
57 # GN version: //media:media_features 57 # GN version: //media:media_features
58 'target_name': 'media_features', 58 'target_name': 'media_features',
59 'includes': [ '../build/buildflag_header.gypi' ], 59 'includes': [ '../build/buildflag_header.gypi' ],
60 'variables': { 60 'variables': {
61 'buildflag_header_path': 'media/media_features.h', 61 'buildflag_header_path': 'media/media_features.h',
62 'buildflag_flags': [ 62 'buildflag_flags': [
63 "ENABLE_AC3_EAC3_AUDIO_DEMUXING=<(enable_ac3_eac3_audio_demuxing)", 63 "ENABLE_AC3_EAC3_AUDIO_DEMUXING=<(enable_ac3_eac3_audio_demuxing)",
64 "ENABLE_HEVC_DEMUXING=<(enable_hevc_demuxing)", 64 "ENABLE_HEVC_DEMUXING=<(enable_hevc_demuxing)",
65 "ENABLE_MSE_MPEG2TS_STREAM_PARSER=<(enable_mse_mpeg2ts_stream_parser)" , 65 "ENABLE_MSE_MPEG2TS_STREAM_PARSER=<(enable_mse_mpeg2ts_stream_parser)" ,
66 "ENABLE_MP4_VP8_VP9_DEMUXING=0",
66 ], 67 ],
67 }, 68 },
68 }, 69 },
69 { 70 {
70 # GN version: //media 71 # GN version: //media
71 'target_name': 'media', 72 'target_name': 'media',
72 'type': '<(component)', 73 'type': '<(component)',
73 'dependencies': [ 74 'dependencies': [
74 'media_features', 75 'media_features',
75 '../base/base.gyp:base', 76 '../base/base.gyp:base',
(...skipping 2088 matching lines...) Expand 10 before | Expand all | Expand 10 after
2164 'dependencies': [ 2165 'dependencies': [
2165 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2166 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2166 ], 2167 ],
2167 }], 2168 }],
2168 ], 2169 ],
2169 }, 2170 },
2170 ], 2171 ],
2171 }], 2172 }],
2172 ], 2173 ],
2173 } 2174 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698