switch repo manifest to track the main branch

Change-Id: Ibb74f3c06e821ba386dd286e730fce4f9344ac75
Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/2718528
Reviewed-by: Ian Barkley-Yeung <iby@chromium.org>
This commit is contained in:
Mike Frysinger 2021-02-24 19:32:08 -05:00
parent fe5025b7f1
commit 778bd12f22
2 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@
<!-- AUTOGENERATED BY deps-to-manifest.py; DO NOT EDIT --> <!-- AUTOGENERATED BY deps-to-manifest.py; DO NOT EDIT -->
<manifest> <manifest>
<default revision='refs/heads/master' <default revision='refs/heads/main'
remote='chromium' remote='chromium'
sync-c='true' sync-c='true'
sync-j='8' /> sync-j='8' />
@ -17,7 +17,7 @@
<project path='src' <project path='src'
name='breakpad/breakpad' name='breakpad/breakpad'
revision='refs/heads/master' revision='refs/heads/main'
remote='chromium' /> remote='chromium' />
<project path='src/src/tools/gyp' <project path='src/src/tools/gyp'

View file

@ -49,7 +49,7 @@ MANIFEST_HEAD = """<?xml version='1.0' encoding='UTF-8'?>
<!-- AUTOGENERATED BY %(prog)s; DO NOT EDIT --> <!-- AUTOGENERATED BY %(prog)s; DO NOT EDIT -->
<manifest> <manifest>
<default revision='refs/heads/master' <default revision='refs/heads/main'
remote='chromium' remote='chromium'
sync-c='true' sync-c='true'
sync-j='8' /> sync-j='8' />
@ -100,7 +100,7 @@ def ConvertDepsToManifest(deps, manifest):
data = { data = {
'path': 'src', 'path': 'src',
'name': 'breakpad/breakpad', 'name': 'breakpad/breakpad',
'revision': 'refs/heads/master', 'revision': 'refs/heads/main',
'remote': 'chromium', 'remote': 'chromium',
} }
new_contents += MANIFEST_PROJECT % data new_contents += MANIFEST_PROJECT % data