| 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 | 6 |
| 7 declare_args() { | 7 declare_args() { |
| 8 # Allows distributions to link pulseaudio directly (DT_NEEDED) instead of | 8 # Allows distributions to link pulseaudio directly (DT_NEEDED) instead of |
| 9 # using dlopen. This helps with automated detection of ABI mismatches and | 9 # using dlopen. This helps with automated detection of ABI mismatches and |
| 10 # prevents silent errors. | 10 # prevents silent errors. |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 enable_mpeg2ts_stream_parser = is_chromecast | 57 enable_mpeg2ts_stream_parser = is_chromecast |
| 58 | 58 |
| 59 # Enable HEVC/H265 demuxing. Actual decoding must be provided by the | 59 # Enable HEVC/H265 demuxing. Actual decoding must be provided by the |
| 60 # platform. Enable by default for Chromecast. | 60 # platform. Enable by default for Chromecast. |
| 61 enable_hevc_demuxing = is_chromecast | 61 enable_hevc_demuxing = is_chromecast |
| 62 | 62 |
| 63 # Experiment to enable mojo media application: http://crbug.com/431776 | 63 # Experiment to enable mojo media application: http://crbug.com/431776 |
| 64 # Valid options are: | 64 # Valid options are: |
| 65 # - "none": Do not use mojo media application. | 65 # - "none": Do not use mojo media application. |
| 66 # - "browser": Use mojo media application hosted in the browser process. | 66 # - "browser": Use mojo media application hosted in the browser process. |
| 67 # - "gpu": Use mojo media application hosted in the gpu process. |
| 67 # - "utility": Use mojo media application hosted in the utility process. | 68 # - "utility": Use mojo media application hosted in the utility process. |
| 68 enable_mojo_media = "none" | 69 enable_mojo_media = "none" |
| 69 | 70 |
| 70 # TODO(GYP): This should be a platform define. | 71 # TODO(GYP): This should be a platform define. |
| 71 is_openbsd = false | 72 is_openbsd = false |
| 72 } | 73 } |
| OLD | NEW |