forked from benmccann/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cr: Add support for GN build file generation
To use, invoke cr init with --generator gn: $ cr init -o out_linux/Debug --generator gn $ cr build ... $ cr run ... $ etc. You can also pass in additional arguments: $ cr init -o out_linux/Debug --generator gn -s GN_ARG_foo=bar Note that gn args works normally, although you need to specify the out directory manually: $ gn args out_linux/Debug Review URL: https://codereview.chromium.org/1095613002 Cr-Commit-Position: refs/heads/master@{#325664}
- Loading branch information
Showing
5 changed files
with
100 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# Copyright 2015 The Chromium Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
"""A module to add gn support to cr.""" | ||
|
||
import cr | ||
import shlex | ||
import os | ||
|
||
GN_ARG_PREFIX = 'GN_ARG_' | ||
|
||
|
||
class GnPrepareOut(cr.PrepareOut): | ||
"""A prepare action that runs gn whenever you select an output directory.""" | ||
|
||
ACTIVE = cr.Config.From( | ||
GN_ARG_is_component_build='true', | ||
) | ||
|
||
@property | ||
def enabled(self): | ||
# Disabled on Android for now. | ||
return not cr.AndroidPlatform.GetInstance().is_active | ||
|
||
def UpdateContext(self): | ||
# Collapse GN_ARGS from all GN_ARG prefixes | ||
gn_args = cr.context.Find('GN_ARGS') or '' | ||
for key, value in cr.context.exported.items(): | ||
if key.startswith(GN_ARG_PREFIX): | ||
gn_args += ' %s=%s' % (key[len(GN_ARG_PREFIX):], value) | ||
|
||
gn_args += (' is_debug=%s' % | ||
'true' if cr.context['CR_BUILDTYPE'] == 'Debug' else 'false') | ||
|
||
cr.context['GN_ARGS'] = gn_args.strip() | ||
if cr.context.verbose >= 1: | ||
print cr.context.Substitute('GN_ARGS = {GN_ARGS}') | ||
|
||
def Prepare(self): | ||
if cr.context.verbose >= 1: | ||
print cr.context.Substitute('Invoking gn with {GN_ARGS}') | ||
|
||
args_file = os.path.join(cr.context['CR_SRC'], | ||
cr.context['CR_OUT_FULL'], | ||
'args.gn') | ||
args = {} | ||
for arg in shlex.split(cr.context['GN_ARGS']): | ||
key, value = arg.split('=', 1) | ||
args[key] = value | ||
|
||
# Override any existing settings. | ||
arg_lines = [] | ||
if os.path.exists(args_file): | ||
with open(args_file) as f: | ||
for line in f: | ||
key = line.split('=', 1)[0].strip() | ||
if key not in args: | ||
arg_lines.append(line.strip()) | ||
|
||
# Append new settings. | ||
for key, value in args.items(): | ||
arg_lines.append('%s = %s' % (key, value)) | ||
|
||
with open(args_file, 'w') as f: | ||
f.write('\n'.join(arg_lines) + '\n') | ||
|
||
cr.Host.Execute( | ||
'gn', | ||
'gen', | ||
'{CR_OUT_FULL}', | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters