0

Roll GN from fd3d768b..9499562d

Generated by //tools/gn/roll_gn.py

https://gn.googlesource.com/gn/+log/fd3d768b..9499562d

    9499562d Fix analyze not noticing when BUILD.gn files change
    91eee9b2 [Xcode] Implement custom sort of the elements in Xcode project
    32f0f53d Remove flaky StringAtom test.
    aff489a4 Add "filter_{exclude,include}" intrinsic functions to GN
    08bfc84b Include more files in the generated Xcode project
    07854239 Reduce RAM usage and improve speed of "gn gen"
    992e927e [xcode] Refactor XcodeWriter

Bug: 999002, 1018739
Change-Id: I11f9cf6c5d89ea1246dbceed397c2efcce59a4d2
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2099572
Commit-Queue: Andrew Grieve <agrieve@chromium.org>
Reviewed-by: Nico Weber <thakis@chromium.org>
Reviewed-by: Sylvain Defresne <sdefresne@chromium.org>
Cr-Commit-Position: refs/heads/master@{#749884}
This commit is contained in:
Andrew Grieve
2020-03-12 21:18:54 +00:00
committed by Commit Bot
parent ba1fff7559
commit 0f9cf12e62
3 changed files with 11 additions and 4 deletions
DEPS
buildtools
tools/gn

2
DEPS

@ -333,7 +333,7 @@ vars = {
# revisions.
# GN CIPD package version.
'gn_version': 'git_revision:fd3d768bcfd44a8d9639fe278581bd9851d0ce3a',
'gn_version': 'git_revision:9499562d94bf142f43d03622492e67b217461f67',
# Also, if you change these, update buildtools/DEPS too. Also update the
# libc++ svn_revision in //buildtools/deps_revisions.gni.

@ -14,7 +14,7 @@ vars = {
#
# GN CIPD package version.
'gn_version': 'git_revision:fd3d768bcfd44a8d9639fe278581bd9851d0ce3a',
'gn_version': 'git_revision:9499562d94bf142f43d03622492e67b217461f67',
# When changing these, also update the svn revisions in deps_revisions.gni
'clang_format_revision': '96636aa0e9f047f17447f2d45a094d0b59ed7917',

@ -95,9 +95,16 @@ def main():
change_lines = '\n'.join(' %s %s' % (tup[0][:8], tup[1])
for tup in changes)
commit_message = '''\
Roll GN from %s..%s
Roll GN from {from_rev}..{to_rev}
%s''' % (current_revision[:8], args.revision[:8], change_lines)
Generated by //tools/gn/roll_gn.py
https://gn.googlesource.com/gn/+log/{from_rev}..{to_rev}
{change_lines}'''.format(
from_rev=current_revision[:8],
to_rev=args.revision[:8],
change_lines=change_lines)
subprocess.call(['git', 'commit', '-a', '-m', commit_message])