| 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/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/libfuzzer/fuzzer_test.gni") | 12 import("//testing/libfuzzer/fuzzer_test.gni") |
| 13 import("//testing/test.gni") | 13 import("//testing/test.gni") |
| 14 import("//third_party/ffmpeg/ffmpeg_options.gni") | 14 import("//third_party/ffmpeg/ffmpeg_options.gni") |
| 15 | 15 |
| 16 buildflag_header("media_features") { | 16 buildflag_header("media_features") { |
| 17 header = "media_features.h" | 17 header = "media_features.h" |
| 18 | 18 |
| 19 flags = [ | 19 flags = [ |
| 20 "ENABLE_AC3_EAC3_AUDIO_DEMUXING=$enable_ac3_eac3_audio_demuxing", | 20 "ENABLE_AC3_EAC3_AUDIO_DEMUXING=$enable_ac3_eac3_audio_demuxing", |
| 21 "ENABLE_HEVC_DEMUXING=$enable_hevc_demuxing", | 21 "ENABLE_HEVC_DEMUXING=$enable_hevc_demuxing", |
| 22 "ENABLE_MSE_MPEG2TS_STREAM_PARSER=$enable_mse_mpeg2ts_stream_parser", | 22 "ENABLE_MSE_MPEG2TS_STREAM_PARSER=$enable_mse_mpeg2ts_stream_parser", |
| 23 "ENABLE_MEDIA_REMOTING=$enable_media_remoting", |
| 23 ] | 24 ] |
| 24 } | 25 } |
| 25 | 26 |
| 26 if (proprietary_codecs && media_use_ffmpeg) { | 27 if (proprietary_codecs && media_use_ffmpeg) { |
| 27 assert( | 28 assert( |
| 28 ffmpeg_branding != "Chromium", | 29 ffmpeg_branding != "Chromium", |
| 29 "proprietary codecs and ffmpeg_branding set to Chromium are incompatible") | 30 "proprietary codecs and ffmpeg_branding set to Chromium are incompatible") |
| 30 } | 31 } |
| 31 | 32 |
| 32 # Common configuration for targets in the media directory. | 33 # Common configuration for targets in the media directory. |
| (...skipping 868 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 901 fuzzer_test("media_webm_muxer_fuzzer") { | 902 fuzzer_test("media_webm_muxer_fuzzer") { |
| 902 sources = [ | 903 sources = [ |
| 903 "muxers/webm_muxer_fuzzertest.cc", | 904 "muxers/webm_muxer_fuzzertest.cc", |
| 904 ] | 905 ] |
| 905 deps = [ | 906 deps = [ |
| 906 ":media", | 907 ":media", |
| 907 "//base", | 908 "//base", |
| 908 "//third_party/libwebm", | 909 "//third_party/libwebm", |
| 909 ] | 910 ] |
| 910 } | 911 } |
| OLD | NEW |