| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # This args block should contain arguments used within the //chromecast | 5 # This args block should contain arguments used within the //chromecast |
| 6 # directory. Arguments which are used in other Chrome components should | 6 # directory. Arguments which are used in other Chrome components should |
| 7 # be instead declared in //build/config/chromecast_build.gni. | 7 # be instead declared in //build/config/chromecast_build.gni. |
| 8 declare_args() { | 8 declare_args() { |
| 9 # chromecast_branding is used to include or exclude Google-branded components. | 9 # chromecast_branding is used to include or exclude Google-branded components. |
| 10 # Set it to "public" for a Chromium build. | 10 # Set it to "public" for a Chromium build. |
| 11 chromecast_branding = "public" | 11 chromecast_branding = "public" |
| 12 | 12 |
| 13 # True if Chromecast build is targetted for linux desktop. | 13 # True if Chromecast build is targetted for linux desktop. |
| 14 is_chromecast_desktop_build = is_linux && target_cpu != "arm" | 14 is_chromecast_desktop_build = is_linux && target_cpu != "arm" |
| 15 | 15 |
| 16 # Use Playready CDMs. | 16 # Use Playready CDMs. |
| 17 use_playready = false | 17 use_playready = false |
| 18 |
| 19 # Set this true to perform an audio-only build. |
| 20 disable_display = false |
| 18 } | 21 } |
| OLD | NEW |