Commit e44595f2 by Alexey Knyazev Committed by Commit Bot

Update DEP actions for Python 3

build/mac_toolchain.py was fixed for Python 3 in https://crrev.com/c/2727724 Bug: angleproject:5707 Change-Id: I2f233157bedc3cc298250b8efc9bd68ac45cdc28 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2731707Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 18314bce
...@@ -421,14 +421,14 @@ hooks = [ ...@@ -421,14 +421,14 @@ hooks = [
'name': 'mac_toolchain', 'name': 'mac_toolchain',
'pattern': '.', 'pattern': '.',
'condition': 'checkout_mac and not build_with_chromium', 'condition': 'checkout_mac and not build_with_chromium',
'action': ['python', 'build/mac_toolchain.py'], 'action': ['python3', 'build/mac_toolchain.py'],
}, },
{ {
# Note: On Win, this should run after win_toolchain, as it may use it. # Note: On Win, this should run after win_toolchain, as it may use it.
'name': 'clang', 'name': 'clang',
'pattern': '.', 'pattern': '.',
'action': ['python', 'tools/clang/scripts/update.py'], 'action': ['python3', 'tools/clang/scripts/update.py'],
'condition': 'not build_with_chromium', 'condition': 'not build_with_chromium',
}, },
...@@ -437,7 +437,7 @@ hooks = [ ...@@ -437,7 +437,7 @@ hooks = [
'name': 'lastchange', 'name': 'lastchange',
'pattern': '.', 'pattern': '.',
'condition': 'not build_with_chromium', 'condition': 'not build_with_chromium',
'action': ['python', 'build/util/lastchange.py', 'action': ['python3', 'build/util/lastchange.py',
'-o', 'build/util/LASTCHANGE'], '-o', 'build/util/LASTCHANGE'],
}, },
......
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