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

Side by Side Diff: media/BUILD.gn

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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/arm.gni") 7 import("//build/config/arm.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
11 import("//media/media_options.gni") 11 import("//media/media_options.gni")
12 import("//testing/test.gni") 12 import("//testing/test.gni")
13 13
14 buildflag_header("media_features") { 14 buildflag_header("media_features") {
15 header = "media_features.h" 15 header = "media_features.h"
16 16
17 flags = [ 17 flags = [
18 "ENABLE_AC3_EAC3_AUDIO_DEMUXING=$enable_ac3_eac3_audio_demuxing", 18 "ENABLE_AC3_EAC3_AUDIO_DEMUXING=$enable_ac3_eac3_audio_demuxing",
19 "ENABLE_HEVC_DEMUXING=$enable_hevc_demuxing", 19 "ENABLE_HEVC_DEMUXING=$enable_hevc_demuxing",
20 "ENABLE_MSE_MPEG2TS_STREAM_PARSER=$enable_mse_mpeg2ts_stream_parser", 20 "ENABLE_MSE_MPEG2TS_STREAM_PARSER=$enable_mse_mpeg2ts_stream_parser",
21 "ENABLE_MP4_VP8_VP9_DEMUXING=0",
ddorwin 2016/02/25 00:27:47 We won't be able to enable this until we roll in a
kqyang 2016/03/01 01:18:51 Acknowledged.
21 ] 22 ]
22 } 23 }
23 24
24 # Common configuration for targets in the media directory. 25 # Common configuration for targets in the media directory.
25 # NOT for exporting. 26 # NOT for exporting.
26 config("media_config") { 27 config("media_config") {
27 defines = [] 28 defines = []
28 if (!media_use_libvpx) { 29 if (!media_use_libvpx) {
29 defines += [ "MEDIA_DISABLE_LIBVPX" ] 30 defines += [ "MEDIA_DISABLE_LIBVPX" ]
30 } 31 }
(...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after
928 "//media/base:test_support", 929 "//media/base:test_support",
929 "//media/test:pipeline_integration_tests", 930 "//media/test:pipeline_integration_tests",
930 "//testing/gmock", 931 "//testing/gmock",
931 "//testing/gtest", 932 "//testing/gtest",
932 "//third_party/ffmpeg", 933 "//third_party/ffmpeg",
933 "//ui/gfx:test_support", 934 "//ui/gfx:test_support",
934 "//ui/gfx/geometry", 935 "//ui/gfx/geometry",
935 ] 936 ]
936 } 937 }
937 } 938 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698