Chromium Code Reviews| 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 if (enable_mojo_media_player_renderer) { | |
| 20 assert(is_android, | |
| 21 "enable_mojo_media_player_renderer can only be true on Android") | |
|
tguilbert
2016/10/06 02:11:39
I will find a nicer wording.
| |
| 22 } | |
| 23 | |
| 19 flags = [ | 24 flags = [ |
| 20 "ENABLE_AC3_EAC3_AUDIO_DEMUXING=$enable_ac3_eac3_audio_demuxing", | 25 "ENABLE_AC3_EAC3_AUDIO_DEMUXING=$enable_ac3_eac3_audio_demuxing", |
| 21 "ENABLE_HEVC_DEMUXING=$enable_hevc_demuxing", | 26 "ENABLE_HEVC_DEMUXING=$enable_hevc_demuxing", |
| 22 "ENABLE_MSE_MPEG2TS_STREAM_PARSER=$enable_mse_mpeg2ts_stream_parser", | 27 "ENABLE_MSE_MPEG2TS_STREAM_PARSER=$enable_mse_mpeg2ts_stream_parser", |
| 28 "ENABLE_MOJO_MEDIA_PLAYER_RENDERER=$enable_mojo_media_player_renderer", | |
| 23 ] | 29 ] |
| 24 } | 30 } |
| 25 | 31 |
| 26 if (proprietary_codecs && media_use_ffmpeg) { | 32 if (proprietary_codecs && media_use_ffmpeg) { |
| 27 assert( | 33 assert( |
| 28 ffmpeg_branding != "Chromium", | 34 ffmpeg_branding != "Chromium", |
| 29 "proprietary codecs and ffmpeg_branding set to Chromium are incompatible") | 35 "proprietary codecs and ffmpeg_branding set to Chromium are incompatible") |
| 30 } | 36 } |
| 31 | 37 |
| 32 # Common configuration for targets in the media directory. | 38 # 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") { | 907 fuzzer_test("media_webm_muxer_fuzzer") { |
| 902 sources = [ | 908 sources = [ |
| 903 "muxers/webm_muxer_fuzzertest.cc", | 909 "muxers/webm_muxer_fuzzertest.cc", |
| 904 ] | 910 ] |
| 905 deps = [ | 911 deps = [ |
| 906 ":media", | 912 ":media", |
| 907 "//base", | 913 "//base", |
| 908 "//third_party/libwebm", | 914 "//third_party/libwebm", |
| 909 ] | 915 ] |
| 910 } | 916 } |
| OLD | NEW |