OLD | NEW |
| (Empty) |
1 # Build arguments for Chromecast. | |
2 # Copy the contents of this file to gn args. | |
3 | |
4 root_extra_deps = [ "//chromecast" ] | |
5 | |
6 # Enable the use of browser-side CDM. | |
7 enable_browser_cdms = true | |
8 | |
9 # Enable plugins, but explicitly disable use of Pepper CDMs. | |
10 enable_plugins = true | |
11 enable_pepper_cdms = false | |
12 | |
13 # Flags set from build/common.gypi | |
14 | |
15 # Compile with MSE support for MPEG2 TS. See //media/media_options.gni for more | |
16 # detail. | |
17 enable_mpeg2ts_stream_parser = true | |
18 | |
19 # Instead of maintaining a separate "Chromecast" ffmpeg branding, "ChromeOS" is | |
20 # used, as it sufficiently covers all the required codecs. | |
21 ffmpeg_branding = "ChromeOS" | |
22 | |
23 # Setting this to true generates libeglplatform_shim.so.1 from | |
24 # //ui/ozone/platform/egltest:egl_platform_x11. | |
25 ozone_platform_ozonex = true | |
26 | |
27 # Chromecast must use proprietary codecs. Setting this to true defines the | |
28 # USE_PROPRIETARY_CODECS macro and the proper EME_CODEC macros. | |
29 proprietary_codecs = true | |
30 | |
31 # See //build/config/ui.gni. Notice that use_x11 = is_linux && !use_ozone. | |
32 use_ozone = true | |
33 # TODO(halliwell): look into supporting Cast Ozone with GN. | |
34 # ozone_platform_cast = 1 | |
35 # TODO(gyp): Add support for blink_logging_always_on and enable it. | |
36 # blink_logging_always_on = 1 | |
OLD | NEW |