mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2026-02-16 23:29:52 +08:00
DEPS: use python3
Bug: chromium:1208028 Change-Id: Ia59abc88404cd0101dd099e1ed93d449fef71d84 Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/3303290 Reviewed-by: Mirko Bonadei <mbonadei@chromium.org> Commit-Queue: Mirko Bonadei <mbonadei@chromium.org>
This commit is contained in:
parent
000806f373
commit
63ce1d0585
28
DEPS
28
DEPS
@ -2286,7 +2286,7 @@ pre_deps_hooks = [
|
|||||||
# TODO(kjellander): Remove this in March 2017.
|
# TODO(kjellander): Remove this in March 2017.
|
||||||
'name': 'cleanup_links',
|
'name': 'cleanup_links',
|
||||||
'pattern': '.',
|
'pattern': '.',
|
||||||
'action': ['python', 'src/cleanup_links.py'],
|
'action': ['python3', 'src/cleanup_links.py'],
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -2298,7 +2298,7 @@ hooks = [
|
|||||||
'name': 'landmines',
|
'name': 'landmines',
|
||||||
'pattern': '.',
|
'pattern': '.',
|
||||||
'action': [
|
'action': [
|
||||||
'python',
|
'python3',
|
||||||
'src/build/landmines.py',
|
'src/build/landmines.py',
|
||||||
'--landmine-scripts',
|
'--landmine-scripts',
|
||||||
'src/tools_libyuv/get_landmines.py',
|
'src/tools_libyuv/get_landmines.py',
|
||||||
@ -2311,48 +2311,48 @@ hooks = [
|
|||||||
'name': 'sysroot_arm',
|
'name': 'sysroot_arm',
|
||||||
'pattern': '.',
|
'pattern': '.',
|
||||||
'condition': 'checkout_linux and checkout_arm',
|
'condition': 'checkout_linux and checkout_arm',
|
||||||
'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
'action': ['python3', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
||||||
'--arch=arm'],
|
'--arch=arm'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'name': 'sysroot_arm64',
|
'name': 'sysroot_arm64',
|
||||||
'pattern': '.',
|
'pattern': '.',
|
||||||
'condition': 'checkout_linux and checkout_arm64',
|
'condition': 'checkout_linux and checkout_arm64',
|
||||||
'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
'action': ['python3', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
||||||
'--arch=arm64'],
|
'--arch=arm64'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'name': 'sysroot_x86',
|
'name': 'sysroot_x86',
|
||||||
'pattern': '.',
|
'pattern': '.',
|
||||||
'condition': 'checkout_linux and (checkout_x86 or checkout_x64)',
|
'condition': 'checkout_linux and (checkout_x86 or checkout_x64)',
|
||||||
'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
'action': ['python3', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
||||||
'--arch=x86'],
|
'--arch=x86'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'name': 'sysroot_mips',
|
'name': 'sysroot_mips',
|
||||||
'pattern': '.',
|
'pattern': '.',
|
||||||
'condition': 'checkout_linux and checkout_mips',
|
'condition': 'checkout_linux and checkout_mips',
|
||||||
'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
'action': ['python3', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
||||||
'--arch=mips'],
|
'--arch=mips'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'name': 'sysroot_x64',
|
'name': 'sysroot_x64',
|
||||||
'pattern': '.',
|
'pattern': '.',
|
||||||
'condition': 'checkout_linux and checkout_x64',
|
'condition': 'checkout_linux and checkout_x64',
|
||||||
'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
'action': ['python3', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
||||||
'--arch=x64'],
|
'--arch=x64'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
# Update the Windows toolchain if necessary.
|
# Update the Windows toolchain if necessary.
|
||||||
'name': 'win_toolchain',
|
'name': 'win_toolchain',
|
||||||
'pattern': '.',
|
'pattern': '.',
|
||||||
'action': ['python', 'src/build/vs_toolchain.py', 'update'],
|
'action': ['python3', 'src/build/vs_toolchain.py', 'update'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
# Update the Mac toolchain if necessary.
|
# Update the Mac toolchain if necessary.
|
||||||
'name': 'mac_toolchain',
|
'name': 'mac_toolchain',
|
||||||
'pattern': '.',
|
'pattern': '.',
|
||||||
'action': ['python', 'src/build/mac_toolchain.py'],
|
'action': ['python3', 'src/build/mac_toolchain.py'],
|
||||||
'condition': 'checkout_mac',
|
'condition': 'checkout_mac',
|
||||||
},
|
},
|
||||||
# Pull the msan libraries on linux.
|
# Pull the msan libraries on linux.
|
||||||
@ -2360,7 +2360,7 @@ hooks = [
|
|||||||
'name': 'msan_chained_origins',
|
'name': 'msan_chained_origins',
|
||||||
'pattern': '.',
|
'pattern': '.',
|
||||||
'condition': 'checkout_linux',
|
'condition': 'checkout_linux',
|
||||||
'action': [ 'python',
|
'action': [ 'python3',
|
||||||
'src/third_party/depot_tools/download_from_google_storage.py',
|
'src/third_party/depot_tools/download_from_google_storage.py',
|
||||||
'--no_resume',
|
'--no_resume',
|
||||||
'--no_auth',
|
'--no_auth',
|
||||||
@ -2372,7 +2372,7 @@ hooks = [
|
|||||||
'name': 'msan_no_origins',
|
'name': 'msan_no_origins',
|
||||||
'pattern': '.',
|
'pattern': '.',
|
||||||
'condition': 'checkout_linux',
|
'condition': 'checkout_linux',
|
||||||
'action': [ 'python',
|
'action': [ 'python3',
|
||||||
'src/third_party/depot_tools/download_from_google_storage.py',
|
'src/third_party/depot_tools/download_from_google_storage.py',
|
||||||
'--no_resume',
|
'--no_resume',
|
||||||
'--no_auth',
|
'--no_auth',
|
||||||
@ -2385,13 +2385,13 @@ hooks = [
|
|||||||
# 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', 'src/tools/clang/scripts/update.py'],
|
'action': ['python3', 'src/tools/clang/scripts/update.py'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
# Update LASTCHANGE.
|
# Update LASTCHANGE.
|
||||||
'name': 'lastchange',
|
'name': 'lastchange',
|
||||||
'pattern': '.',
|
'pattern': '.',
|
||||||
'action': ['python', 'src/build/util/lastchange.py',
|
'action': ['python3', 'src/build/util/lastchange.py',
|
||||||
'-o', 'src/build/util/LASTCHANGE'],
|
'-o', 'src/build/util/LASTCHANGE'],
|
||||||
},
|
},
|
||||||
# Pull clang-format binaries using checked-in hashes.
|
# Pull clang-format binaries using checked-in hashes.
|
||||||
@ -2479,7 +2479,7 @@ hooks = [
|
|||||||
'name': 'Generate component metadata for tests',
|
'name': 'Generate component metadata for tests',
|
||||||
'pattern': '.',
|
'pattern': '.',
|
||||||
'action': [
|
'action': [
|
||||||
'vpython',
|
'vpython3',
|
||||||
'src/testing/generate_location_tags.py',
|
'src/testing/generate_location_tags.py',
|
||||||
'--out',
|
'--out',
|
||||||
'src/testing/location_tags.json',
|
'src/testing/location_tags.json',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user