зеркало из https://github.com/AvaloniaUI/angle.git
254 строки
8.5 KiB
Python
254 строки
8.5 KiB
Python
vars = {
|
|
'android_git': 'https://android.googlesource.com',
|
|
'chromium_git': 'https://chromium.googlesource.com',
|
|
|
|
# This variable is set on the Chrome infra for compatiblity with gclient.
|
|
'angle_root': '.',
|
|
|
|
# This variable is overrided in Chromium's DEPS file.
|
|
'build_with_chromium': False,
|
|
|
|
# Current revision of dEQP.
|
|
'deqp_revision': 'f5637d67a00a1081a13008bb8dc93b2616c935e2',
|
|
|
|
# Current revision of glslang, the Khronos SPIRV compiler.
|
|
'glslang_revision': '4508a8170a8f62ede770fb1da34c1cc600e0c596',
|
|
|
|
# Current revision fo the SPIRV-Headers Vulkan support library.
|
|
'spirv_headers_revision': 'd5b2e1255f706ce1f88812217e9a554f299848af',
|
|
|
|
# Current revision of SPIRV-Tools for Vulkan.
|
|
'spirv_tools_revision': 'd73b9d8dfbf7761e3fde323af00ec18ebfc0020c',
|
|
|
|
# Current revision of Khronos Vulkan-Headers.
|
|
'vulkan_headers_revision': '79ea168fa9e412de9dccb6ca201a3a863e5c850e',
|
|
|
|
# Current revision of Khronos Vulkan-Loader.
|
|
'vulkan_loader_revision': '445a45831911fe2639554244fc6bcae6aa5620a4',
|
|
|
|
# Current revision of Khronos Vulkan-Tools.
|
|
'vulkan_tools_revision': '2e8d601de618eddf2bab8597fd140b2824a060b2',
|
|
|
|
# Current revision of Khronos Vulkan-ValidationLayers.
|
|
'vulkan_validation_revision': '105d64975494a2e06591f2ff6c4f1d6e4fd0bee8',
|
|
}
|
|
|
|
deps = {
|
|
|
|
'{angle_root}/build': {
|
|
'url': '{chromium_git}/chromium/src/build.git@833fdc442d9c20f03f0e157d98b3b5e78f132f1d',
|
|
'condition': 'not build_with_chromium',
|
|
},
|
|
|
|
'{angle_root}/buildtools': {
|
|
'url': '{chromium_git}/chromium/buildtools.git@13a00f110ef910a25763346d6538b60f12845656',
|
|
'condition': 'not build_with_chromium',
|
|
},
|
|
|
|
'{angle_root}/testing': {
|
|
'url': '{chromium_git}/chromium/src/testing@495ff5a2efba1400df8a7ef7fcbff91ea72a46a9',
|
|
'condition': 'not build_with_chromium',
|
|
},
|
|
|
|
# Cherry is a dEQP management GUI written in Go. We use it for viewing test results.
|
|
'{angle_root}/third_party/cherry': {
|
|
'url': '{android_git}/platform/external/cherry@4f8fb08d33ca5ff05a1c638f04c85bbb8d8b52cc',
|
|
'condition': 'not build_with_chromium',
|
|
},
|
|
|
|
'{angle_root}/third_party/deqp/src': {
|
|
'url': '{android_git}/platform/external/deqp@{deqp_revision}',
|
|
},
|
|
|
|
'{angle_root}/third_party/glslang/src': {
|
|
'url': '{android_git}/platform/external/shaderc/glslang@{glslang_revision}',
|
|
},
|
|
|
|
'{angle_root}/third_party/googletest/src': {
|
|
'url': '{chromium_git}/external/github.com/google/googletest.git@145d05750b15324899473340c8dd5af50d125d33',
|
|
'condition': 'not build_with_chromium',
|
|
},
|
|
|
|
'{angle_root}/third_party/libpng/src': {
|
|
'url': '{android_git}/platform/external/libpng@094e181e79a3d6c23fd005679025058b7df1ad6c',
|
|
'condition': 'not build_with_chromium',
|
|
},
|
|
|
|
'{angle_root}/third_party/jsoncpp': {
|
|
'url': '{chromium_git}/chromium/src/third_party/jsoncpp@fd0ac8ce63a47e99b71a58f1489136fbb19c9137',
|
|
},
|
|
|
|
'{angle_root}/third_party/jsoncpp/source': {
|
|
'url' : '{chromium_git}/external/github.com/open-source-parsers/jsoncpp@f572e8e42e22cfcf5ab0aea26574f408943edfa4'
|
|
},
|
|
|
|
'{angle_root}/third_party/spirv-headers/src': {
|
|
'url': '{android_git}/platform/external/shaderc/spirv-headers@{spirv_headers_revision}',
|
|
'condition': 'not build_with_chromium',
|
|
},
|
|
|
|
'{angle_root}/third_party/spirv-tools/src': {
|
|
'url': '{android_git}/platform/external/shaderc/spirv-tools@{spirv_tools_revision}',
|
|
'condition': 'not build_with_chromium',
|
|
},
|
|
|
|
'{angle_root}/third_party/vulkan-headers/src': {
|
|
'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Headers@{vulkan_headers_revision}',
|
|
},
|
|
|
|
'{angle_root}/third_party/vulkan-loader/src': {
|
|
'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Loader@{vulkan_loader_revision}',
|
|
},
|
|
|
|
'{angle_root}/third_party/vulkan-tools/src': {
|
|
'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Tools@{vulkan_tools_revision}',
|
|
},
|
|
|
|
'{angle_root}/third_party/vulkan-validation-layers/src': {
|
|
'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-ValidationLayers@{vulkan_validation_revision}',
|
|
},
|
|
|
|
'{angle_root}/third_party/zlib': {
|
|
'url': '{chromium_git}/chromium/src/third_party/zlib@c44fb7248079cc3d5563b14b3f758aee60d6b415',
|
|
'condition': 'not build_with_chromium',
|
|
},
|
|
|
|
'{angle_root}/tools/clang': {
|
|
'url': '{chromium_git}/chromium/src/tools/clang.git@a245b955fe9cd620081ed267fae303c88d033fef',
|
|
'condition': 'not build_with_chromium',
|
|
},
|
|
}
|
|
|
|
hooks = [
|
|
# Pull clang-format binaries using checked-in hashes.
|
|
{
|
|
'name': 'clang_format_win',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "win" and not build_with_chromium',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--platform=win32',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-clang-format',
|
|
'-s', '{angle_root}/buildtools/win/clang-format.exe.sha1',
|
|
],
|
|
},
|
|
{
|
|
'name': 'clang_format_mac',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "mac" and not build_with_chromium',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--platform=darwin',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-clang-format',
|
|
'-s', '{angle_root}/buildtools/mac/clang-format.sha1',
|
|
],
|
|
},
|
|
{
|
|
'name': 'clang_format_linux',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "linux" and not build_with_chromium',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--platform=linux*',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-clang-format',
|
|
'-s', '{angle_root}/buildtools/linux64/clang-format.sha1',
|
|
],
|
|
},
|
|
# Pull GN binaries using checked-in hashes.
|
|
{
|
|
'name': 'gn_win',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "win" and not build_with_chromium',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--platform=win32',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-gn',
|
|
'-s', '{angle_root}/buildtools/win/gn.exe.sha1',
|
|
],
|
|
},
|
|
{
|
|
'name': 'gn_mac',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "mac" and not build_with_chromium',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--platform=darwin',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-gn',
|
|
'-s', '{angle_root}/buildtools/mac/gn.sha1',
|
|
],
|
|
},
|
|
{
|
|
'name': 'gn_linux64',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "linux" and not build_with_chromium',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--platform=linux*',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-gn',
|
|
'-s', '{angle_root}/buildtools/linux64/gn.sha1',
|
|
],
|
|
},
|
|
{
|
|
'name': 'sysroot_x86',
|
|
'pattern': '.',
|
|
'condition': 'checkout_linux and ((checkout_x86 or checkout_x64) and not build_with_chromium)',
|
|
'action': ['python', '{angle_root}/build/linux/sysroot_scripts/install-sysroot.py',
|
|
'--arch=x86'],
|
|
},
|
|
{
|
|
'name': 'sysroot_x64',
|
|
'pattern': '.',
|
|
'condition': 'checkout_linux and (checkout_x64 and not build_with_chromium)',
|
|
'action': ['python', '{angle_root}/build/linux/sysroot_scripts/install-sysroot.py',
|
|
'--arch=x64'],
|
|
},
|
|
{
|
|
# Update the Windows toolchain if necessary. Must run before 'clang' below.
|
|
'name': 'win_toolchain',
|
|
'pattern': '.',
|
|
'condition': 'checkout_win and not build_with_chromium',
|
|
'action': ['python', '{angle_root}/build/vs_toolchain.py', 'update', '--force'],
|
|
},
|
|
|
|
{
|
|
# Note: On Win, this should run after win_toolchain, as it may use it.
|
|
'name': 'clang',
|
|
'pattern': '.',
|
|
'action': ['python', '{angle_root}/tools/clang/scripts/update.py'],
|
|
'condition': 'not build_with_chromium',
|
|
},
|
|
|
|
{
|
|
# Update LASTCHANGE.
|
|
'name': 'lastchange',
|
|
'pattern': '.',
|
|
'condition': 'not build_with_chromium',
|
|
'action': ['python', '{angle_root}/build/util/lastchange.py',
|
|
'-o', '{angle_root}/build/util/LASTCHANGE'],
|
|
},
|
|
|
|
# Pull rc binaries using checked-in hashes.
|
|
{
|
|
'name': 'rc_win',
|
|
'pattern': '.',
|
|
'condition': 'checkout_win and (host_os == "win" and not build_with_chromium)',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-browser-clang/rc',
|
|
'-s', '{angle_root}/build/toolchain/win/rc/win/rc.exe.sha1',
|
|
],
|
|
},
|
|
]
|
|
|
|
recursedeps = [
|
|
# buildtools provides clang_format.
|
|
'{angle_root}/buildtools',
|
|
]
|