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 # Flags set from build/common.gypi | 6 # See //build/config/features.gni for information on this variable. |
7 # When this is enabled, the ENABLE_BROWSER_CDMS macro gets defined, which | |
8 # in turn builds //content/browser/render_host/render_process_host_impl.h's | |
9 # GetBrowserCdm(). | |
10 enable_browser_cdms = true | |
11 | |
12 # TODO(slan): Add note about this variable. | |
mbjorge
2015/08/04 18:10:54
What needs to be noted about this variable?
Is it
slan
2015/08/04 21:22:05
Comment added.
These are just to provide develop
| |
7 enable_mpeg2ts_stream_parser = true | 13 enable_mpeg2ts_stream_parser = true |
14 | |
15 # See //build/common.gypi and note that this gets set to "ChromeOS" when | |
16 # chromecast==1. If you omit this, ffmpeg_branding defaults to "Chromium", only | |
17 # registering a subset of required codecs in | |
18 # //src/third_party/ffmpeg/libavcodec/allcodecs.c. | |
19 # Instead of maintaining a separate "Chromecast" ffmpeg branding, "ChromeOS" is | |
20 # used, as it sufficiently covers all the required codecs. | |
8 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, which is loaded in | |
25 # OzonePlatformEgltest::LoadShim(). | |
26 ozone_platform_ozonex = true | |
27 | |
28 # See the corresponding TODO(gyp) comment in //build/config/features.gni. | |
29 # Setting this to true defines the USE_PROPRIETARY_CODECS macro and the proper | |
30 # EME_CODEC macros in //media/base/eme_constants.h. | |
9 proprietary_codecs = true | 31 proprietary_codecs = true |
10 enable_browser_cdms = true | 32 |
33 # See //build/config/ui.gni. Notice that use_x11 = is_linux && !use_ozone. | |
34 # Without setting use_ozone to true, this make use_x11 = true and the | |
35 # USE_X11 macro to be defined. This in turn causes us to go down the wrong | |
36 # code path in //ui/base/ime/input_method_factory.cc:CreateInputMethod(). | |
37 # "return make_scoped_ptr(new InputMethodAuraLinux(delegate));" | |
38 # instead of | |
39 # "return make_scoped_ptr(new InputMethodMinimal(delegate));" | |
40 use_ozone = true | |
11 # TODO(halliwell): look into supporting Cast Ozone with GN. | 41 # TODO(halliwell): look into supporting Cast Ozone with GN. |
12 # ozone_platform_cast = 1 | 42 # ozone_platform_cast = 1 |
13 # TODO(gyp): Add support for blink_logging_always_on and enable it. | 43 # TODO(gyp): Add support for blink_logging_always_on and enable it. |
14 # blink_logging_always_on = 1 | 44 # blink_logging_always_on = 1 |
OLD | NEW |