Chromium Code Reviews| Index: build/config/chromecast_build.gni |
| diff --git a/build/config/chromecast_build.gni b/build/config/chromecast_build.gni |
| index b2259704983060e0b24006efedeceb12b60e947f..8567bc66fa3702faeee17cbd002802e9dc6d9414 100644 |
| --- a/build/config/chromecast_build.gni |
| +++ b/build/config/chromecast_build.gni |
| @@ -11,7 +11,7 @@ declare_args() { |
| is_chromecast = false |
| # Set this true for an audio-only Chromecast build. |
| - disable_display = false |
| + cast_audio_only = false |
| } |
| # Note(slan): This arg depends on the value of is_chromecast, and thus must be |
| @@ -31,6 +31,6 @@ declare_args() { |
| assert(is_linux || is_android || !is_chromecast, |
| "Chromecast builds are not supported on $target_os") |
| -# Assert that disable_display and is_cast_desktop_build are both false on a |
| +# Assert that cast_audio_only and is_cast_desktop_build are both false on a |
| # non-Chromecast build. |
| -assert(is_chromecast || !(disable_display || is_cast_desktop_build)) |
| +assert(is_chromecast || !(cast_audio_only || is_cast_desktop_build)) |
|
Dirk Pranke
2016/08/29 18:23:38
nit: this might be a bit clearer (to me, at least)
|