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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//testing/libfuzzer/fuzzer_test.gni") | 7 import("//testing/libfuzzer/fuzzer_test.gni") |
8 | 8 |
9 declare_args() { | 9 declare_args() { |
10 # Allows distributions to link pulseaudio directly (DT_NEEDED) instead of | 10 # Allows distributions to link pulseaudio directly (DT_NEEDED) instead of |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 32 |
33 # Use low-memory buffers on non-Android builds of Chromecast. | 33 # Use low-memory buffers on non-Android builds of Chromecast. |
34 use_low_memory_buffer = is_chromecast && !is_android | 34 use_low_memory_buffer = is_chromecast && !is_android |
35 | 35 |
36 # Enables AC3/EAC3 audio demuxing. This is enabled only on Chromecast, since | 36 # Enables AC3/EAC3 audio demuxing. This is enabled only on Chromecast, since |
37 # it only provides demuxing, and is only useful for AC3/EAC3 audio | 37 # it only provides demuxing, and is only useful for AC3/EAC3 audio |
38 # pass-through to HDMI sink on Chromecast. | 38 # pass-through to HDMI sink on Chromecast. |
39 enable_ac3_eac3_audio_demuxing = proprietary_codecs && is_chromecast | 39 enable_ac3_eac3_audio_demuxing = proprietary_codecs && is_chromecast |
40 | 40 |
41 enable_mse_mpeg2ts_stream_parser = | 41 enable_mse_mpeg2ts_stream_parser = |
42 (proprietary_codecs && is_chromecast) || use_libfuzzer | 42 (proprietary_codecs && is_chromecast) || use_libfuzzer || use_afl |
43 | 43 |
44 # Enable HEVC/H265 demuxing. Actual decoding must be provided by the | 44 # Enable HEVC/H265 demuxing. Actual decoding must be provided by the |
45 # platform. Enable by default for Chromecast. | 45 # platform. Enable by default for Chromecast. |
46 enable_hevc_demuxing = proprietary_codecs && is_chromecast | 46 enable_hevc_demuxing = proprietary_codecs && is_chromecast |
47 } | 47 } |
48 | 48 |
49 # Use a second declare_args() to pick up possible overrides of |use_cras|. | 49 # Use a second declare_args() to pick up possible overrides of |use_cras|. |
50 declare_args() { | 50 declare_args() { |
51 # Enables runtime selection of PulseAudio library. | 51 # Enables runtime selection of PulseAudio library. |
52 use_pulseaudio = false | 52 use_pulseaudio = false |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 "cdm", | 116 "cdm", |
117 "renderer", | 117 "renderer", |
118 ] | 118 ] |
119 mojo_media_host = "browser" | 119 mojo_media_host = "browser" |
120 } else { | 120 } else { |
121 mojo_media_services = [ "video_decoder" ] | 121 mojo_media_services = [ "video_decoder" ] |
122 mojo_media_host = "gpu" | 122 mojo_media_host = "gpu" |
123 } | 123 } |
124 } | 124 } |
125 } | 125 } |
OLD | NEW |