Commit d66d9ccc authored by Aidan Wolter's avatar Aidan Wolter Committed by Commit Bot

Add `true` comparison to jinja statement

Add a missing `true` when comparing a jinja variable. Without this, the
statement always resolves to true causing build failures in multiple
platforms.

TEST=None
BUG=None

Change-Id: Ic5973e7f65c7f7cbef4bc77df6c1d214bec6ddb4
Reviewed-on: https://chromium-review.googlesource.com/775605Reviewed-by: default avatarLuke Halliwell <halliwell@chromium.org>
Commit-Queue: Luke Halliwell <halliwell@chromium.org>
Cr-Commit-Position: refs/heads/master@{#517407}
parent b66075f6
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
android:taskAffinity=".CastWebContentsActivity" android:taskAffinity=".CastWebContentsActivity"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize" android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
android:excludeFromRecents="true" android:excludeFromRecents="true"
{% if cast_build_enable_background_activities %} {% if cast_build_enable_background_activities == "true" %}
android:noHistory="false"> android:noHistory="false">
{% else %} {% else %}
android:noHistory="true"> android:noHistory="true">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment