OLD | NEW |
1 # Build arguments for Chromecast. | 1 # Build arguments for Chromecast. |
2 # Copy the contents of this file to gn args. | 2 # Copy the contents of this file to gn args. |
3 | 3 |
4 root_extra_deps = [ "//chromecast" ] | 4 root_extra_deps = [ "//chromecast" ] |
5 | 5 |
6 # Enable the use of browser-side CDM. | 6 # Enable the use of browser-side CDM. |
7 enable_browser_cdms = true | 7 enable_browser_cdms = true |
8 | 8 |
9 # Enable plugins, but explicitly disable use of Pepper CDMs. | 9 # Enable plugins, but explicitly disable use of Pepper CDMs. |
10 enable_plugins = true | 10 enable_plugins = true |
11 enable_pepper_cdms = false | 11 enable_pepper_cdms = false |
12 | 12 |
13 # Flags set from build/common.gypi | 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. |
14 enable_mpeg2ts_stream_parser = true | 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. |
15 ffmpeg_branding = "ChromeOS" | 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. |
16 proprietary_codecs = true | 29 proprietary_codecs = true |
| 30 |
| 31 # See //build/config/ui.gni. Notice that use_x11 = is_linux && !use_ozone. |
| 32 use_ozone = true |
17 # TODO(halliwell): look into supporting Cast Ozone with GN. | 33 # TODO(halliwell): look into supporting Cast Ozone with GN. |
18 # ozone_platform_cast = 1 | 34 # ozone_platform_cast = 1 |
19 # TODO(gyp): Add support for blink_logging_always_on and enable it. | 35 # TODO(gyp): Add support for blink_logging_always_on and enable it. |
20 # blink_logging_always_on = 1 | 36 # blink_logging_always_on = 1 |
OLD | NEW |