aboutsummaryrefslogtreecommitdiff
path: root/src/tools/python/deps-to-manifest.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/python/deps-to-manifest.py')
-rwxr-xr-xsrc/tools/python/deps-to-manifest.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/tools/python/deps-to-manifest.py b/src/tools/python/deps-to-manifest.py
index b4562854..2fcaf771 100755
--- a/src/tools/python/deps-to-manifest.py
+++ b/src/tools/python/deps-to-manifest.py
@@ -1,6 +1,5 @@
#!/usr/bin/python
-# Copyright 2016 Google Inc.
-# All rights reserved.
+# Copyright 2016 Google LLC
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
@@ -12,7 +11,7 @@
# copyright notice, this list of conditions and the following disclaimer
# in the documentation and/or other materials provided with the
# distribution.
-# * Neither the name of Google Inc. nor the names of its
+# * Neither the name of Google LLC nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
@@ -49,7 +48,7 @@ MANIFEST_HEAD = """<?xml version='1.0' encoding='UTF-8'?>
<!-- AUTOGENERATED BY %(prog)s; DO NOT EDIT -->
<manifest>
- <default revision='refs/heads/master'
+ <default revision='refs/heads/main'
remote='chromium'
sync-c='true'
sync-j='8' />
@@ -100,7 +99,7 @@ def ConvertDepsToManifest(deps, manifest):
data = {
'path': 'src',
'name': 'breakpad/breakpad',
- 'revision': 'refs/heads/master',
+ 'revision': 'refs/heads/main',
'remote': 'chromium',
}
new_contents += MANIFEST_PROJECT % data