| OLD | NEW |
| 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 17 matching lines...) Expand all Loading... |
| 28 if (!link_pulseaudio) { | 28 if (!link_pulseaudio) { |
| 29 defines += [ "DLOPEN_PULSEAUDIO" ] | 29 defines += [ "DLOPEN_PULSEAUDIO" ] |
| 30 } | 30 } |
| 31 } | 31 } |
| 32 if (use_cras) { | 32 if (use_cras) { |
| 33 defines += [ "USE_CRAS" ] | 33 defines += [ "USE_CRAS" ] |
| 34 } | 34 } |
| 35 if (proprietary_codecs && enable_hevc_demuxing) { | 35 if (proprietary_codecs && enable_hevc_demuxing) { |
| 36 defines += [ "ENABLE_HEVC_DEMUXING" ] | 36 defines += [ "ENABLE_HEVC_DEMUXING" ] |
| 37 } | 37 } |
| 38 if (proprietary_codecs && enable_ac3_eac3_demuxing) { |
| 39 defines += [ "ENABLE_AC3_EAC3_DEMUXING" ] |
| 40 } |
| 38 } | 41 } |
| 39 | 42 |
| 40 config("media_implementation") { | 43 config("media_implementation") { |
| 41 defines = [ "MEDIA_IMPLEMENTATION" ] | 44 defines = [ "MEDIA_IMPLEMENTATION" ] |
| 42 } | 45 } |
| 43 | 46 |
| 44 config("media_dependent_config") { | 47 config("media_dependent_config") { |
| 45 defines = [] | 48 defines = [] |
| 46 if (!media_use_libvpx) { | 49 if (!media_use_libvpx) { |
| 47 defines += [ "MEDIA_DISABLE_LIBVPX" ] | 50 defines += [ "MEDIA_DISABLE_LIBVPX" ] |
| (...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 882 "//media/base:test_support", | 885 "//media/base:test_support", |
| 883 "//media/test:pipeline_integration_tests", | 886 "//media/test:pipeline_integration_tests", |
| 884 "//testing/gmock", | 887 "//testing/gmock", |
| 885 "//testing/gtest", | 888 "//testing/gtest", |
| 886 "//third_party/ffmpeg", | 889 "//third_party/ffmpeg", |
| 887 "//ui/gfx:test_support", | 890 "//ui/gfx:test_support", |
| 888 "//ui/gfx/geometry", | 891 "//ui/gfx/geometry", |
| 889 ] | 892 ] |
| 890 } | 893 } |
| 891 } | 894 } |
| OLD | NEW |