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

Side by Side Diff: media/BUILD.gn

Issue 812643005: Re-add AC3/EAC3 audio demuxing support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move CanPlay tests into _mp4 test case Created 5 years 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/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/linux/pkg_config.gni") 8 import("//build/config/linux/pkg_config.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 20 matching lines...) Expand all
31 if (!link_pulseaudio) { 31 if (!link_pulseaudio) {
32 defines += [ "DLOPEN_PULSEAUDIO" ] 32 defines += [ "DLOPEN_PULSEAUDIO" ]
33 } 33 }
34 } 34 }
35 if (use_cras) { 35 if (use_cras) {
36 defines += [ "USE_CRAS" ] 36 defines += [ "USE_CRAS" ]
37 } 37 }
38 if (proprietary_codecs && enable_hevc_demuxing) { 38 if (proprietary_codecs && enable_hevc_demuxing) {
39 defines += [ "ENABLE_HEVC_DEMUXING" ] 39 defines += [ "ENABLE_HEVC_DEMUXING" ]
40 } 40 }
41 if (proprietary_codecs && enable_ac3_eac3_demuxing) {
42 defines += [ "ENABLE_AC3_EAC3_DEMUXING" ]
43 }
41 } 44 }
42 45
43 config("media_implementation") { 46 config("media_implementation") {
44 defines = [ "MEDIA_IMPLEMENTATION" ] 47 defines = [ "MEDIA_IMPLEMENTATION" ]
45 } 48 }
46 49
47 config("media_dependent_config") { 50 config("media_dependent_config") {
48 defines = [] 51 defines = []
49 if (!media_use_libvpx) { 52 if (!media_use_libvpx) {
50 defines += [ "MEDIA_DISABLE_LIBVPX" ] 53 defines += [ "MEDIA_DISABLE_LIBVPX" ]
(...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after
896 "//media/base:test_support", 899 "//media/base:test_support",
897 "//media/test:pipeline_integration_tests", 900 "//media/test:pipeline_integration_tests",
898 "//testing/gmock", 901 "//testing/gmock",
899 "//testing/gtest", 902 "//testing/gtest",
900 "//third_party/ffmpeg", 903 "//third_party/ffmpeg",
901 "//ui/gfx:test_support", 904 "//ui/gfx:test_support",
902 "//ui/gfx/geometry", 905 "//ui/gfx/geometry",
903 ] 906 ]
904 } 907 }
905 } 908 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698