Commit 8365bb18 authored by skyostil's avatar skyostil Committed by Commit bot

cr: Fix gn argument generation in a release build

The condition was being misinterpreted because of missing braces.

Review URL: https://codereview.chromium.org/1104263002

Cr-Commit-Position: refs/heads/master@{#327071}
parent 15f5713c
......@@ -35,7 +35,7 @@ class GnPrepareOut(cr.PrepareOut):
gn_args += ' %s=%s' % (key[len(GN_ARG_PREFIX):], value)
gn_args += (' is_debug=%s' %
'true' if cr.context['CR_BUILDTYPE'] == 'Debug' else 'false')
('true' if cr.context['CR_BUILDTYPE'] == 'Debug' else 'false'))
# Detect goma.
goma_binaries = cr.Host.SearchPath('gomacc', [
......
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