dawn-cmake/DEPS

151 lines
4.8 KiB
Plaintext
Raw Normal View History

2020-03-02 20:47:43 +00:00
use_relative_paths = True
vars = {
'chromium_git': 'https://chromium.googlesource.com',
'github': '/external/github.com',
2020-03-02 20:47:43 +00:00
'binutils_revision': '01aa7745b0bab64ae22600f09fd6483c60f22ebf',
'build_revision': 'f3d0ca5f46b7b190dbbdc6be508ca11dd5c54302',
'buildtools_revision': '74cfb57006f83cfe050817526db359d5c8a11628',
'clang_revision': '3605577b67603ec5776afcfada9e0ff4ea05cf0e',
'cpplint_revision': '305ac8725a166ed42e3f5dd3f80d6de2cf840ef1',
'googletest_revision': 'dcc92d0ab6c4ce022162a23566d44f673251eee4',
Rolling 3 dependencies Roll third_party/googletest/ e588eb1ff..482ac6ee6 (8 commits) https://chromium.googlesource.com/external/github.com/google/googletest.git/+log/e588eb1ff9ff..482ac6ee6342 $ git log e588eb1ff..482ac6ee6 --date=short --no-merges --format='%ad %ae %s' 2020-03-17 absl-team Googletest export 2020-03-16 dmauro Googletest export 2020-03-13 absl-team Googletest export 2020-03-06 absl-team Googletest export 2020-03-03 absl-team Googletest export 2020-03-03 absl-team Googletest export 2020-02-21 johan.mabille Fixed warnings 2020-01-29 krystian.kuzniarek remove a dead reference to the Autotools script Roll third_party/spirv-headers/ 0a7fc4525..f8bf11a02 (9 commits) https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers.git/+log/0a7fc4525991..f8bf11a0253a $ git log 0a7fc4525..f8bf11a02 --date=short --no-merges --format='%ad %ae %s' 2020-03-17 dkoch Add shadercalls scope 2020-03-03 ntorosda Added ray flags, primitive culling flags, queries 2020-03-17 cepheus Non-functional: Update header build to match Khronos spec. builder. 2020-02-14 alele Update headers for SPV_KHR_ray_tracing. 2020-03-13 jmadill Add missing header to BUILD.gn. 2020-03-09 stevenperron Export NonSemanticDebugPrintf.h in bazel build 2020-03-02 jbolz Add NonSemantic.DebugPrintf JSON/header 2020-03-02 jbolz Fix max enum value 2020-01-01 xanto Also propagate SPIRV-Headers version to CMakeLists.txt Roll third_party/spirv-tools/ e1688b60c..60104cd97 (18 commits) https://chromium.googlesource.com/external/github.com/KhronosGroup//SPIRV-Tools.git/+log/e1688b60caf7..60104cd97446 $ git log e1688b60c..60104cd97 --date=short --no-merges --format='%ad %ae %s' 2020-03-19 dneto Add opt::Operand::AsCString and AsString (#3240) 2020-03-20 lujiao Add RayQueryProvisionalKHR to opt types (#3239) 2020-03-17 ehsannas Whitelist SPV_EXT_demote_to_helper_invocation for opt passes (#3236) 2020-03-17 dgkoch Add support for KHR_ray_{query,tracing} extensions (#3235) 2020-03-16 jmadill Roll external/spirv-headers/ 30ef660ce..a17e17e36 (1 commit) (#3230) 2020-03-13 vasniktel Update dependencies (#3228) 2020-03-12 greg Instrument: Debug Printf support (#3215) 2020-03-12 vasniktel spirv-fuzz: Support OpPhi when adding dead break and continue (#3225) 2020-03-12 afdx spirv-fuzz: Fix vector width issue in 'add equation instructions' pass (#3223) 2020-03-09 jbolz Allow sampledimage types as operand of OpCopyObject (#3222) 2020-03-09 vasniktel spirv-fuzz: Remove duplicated functionality (#3220) 2020-03-09 andreperezmaselco.developer spirv-fuzz: Allow OpPhi operand to be replaced with a composite synonym (#3221) 2020-03-08 andreperezmaselco.developer spirv-fuzz: Add toggle access chain instruction transformation (#3211) 2020-03-08 vasniktel spirv-fuzz: Add fuzzer pass to permute function parameters (#3212) 2020-03-06 afdx spirv-fuzz: Use better function name (#3207) 2020-03-05 afdx spirv-fuzz: Add swap commutable operands transformation (#3205) 2020-03-04 afdx spirv-fuzz: Fuzzer pass to add equation instructions (#3202) 2020-03-04 andreperezmaselco.developer Refactor FuzzerPass::ApplyTransformation code duplication. (#3206) Created with: roll-dep third_party/googletest third_party/spirv-headers third_party/spirv-tools Change-Id: I7f0e82cf5bbd38f6473757c74689ac35d23e53c1 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/17342 Reviewed-by: dan sinclair <dsinclair@google.com>
2020-03-19 18:31:59 +00:00
'spirv_headers_revision': 'f8bf11a0253a32375c32cad92c841237b96696c0',
'spirv_tools_revision': '60104cd97446877dad8ed1010a635218937a2f18',
'testing_revision': 'e5ced5141379ee8ae28b4f93d3c02df039d2b052',
2020-03-02 20:47:43 +00:00
}
deps = {
'third_party/cpplint': Var('chromium_git') + Var('github') +
'/google/styleguide.git@' + Var('cpplint_revision'),
2020-03-02 20:47:43 +00:00
'third_party/spirv-headers': Var('chromium_git') + Var('github') +
'/KhronosGroup/SPIRV-Headers.git@' + Var('spirv_headers_revision'),
2020-03-02 20:47:43 +00:00
'third_party/spirv-tools': Var('chromium_git') + Var('github') +
'/KhronosGroup//SPIRV-Tools.git@' + Var('spirv_tools_revision'),
# Dependencies required to use GN/Clang in standalone
'build': Var('chromium_git') + '/chromium/src/build@' +
Var('build_revision'),
'buildtools': Var('chromium_git') + '/chromium/src/buildtools@' +
Var('buildtools_revision'),
'tools/clang': Var('chromium_git') + '/chromium/src/tools/clang@' +
Var('clang_revision'),
'third_party/binutils': Var('chromium_git') +
'/chromium/src/third_party/binutils@' + Var('binutils_revision'),
# Dependencies required for testing
'testing': Var('chromium_git') + '/chromium/src/testing@' +
Var('testing_revision'),
'third_party/googletest': Var('chromium_git') + Var('github') +
'/google/googletest.git@' + Var('googletest_revision'),
2020-03-02 20:47:43 +00:00
}
hooks = [
# Pull clang-format binaries using checked-in hashes.
{
'name': 'clang_format_win',
'pattern': '.',
'condition': 'host_os == "win"',
'action': [ 'download_from_google_storage',
'--no_resume',
'--platform=win32',
'--no_auth',
'--bucket', 'chromium-clang-format',
'-s', 'buildtools/win/clang-format.exe.sha1',
],
},
{
'name': 'clang_format_mac',
'pattern': '.',
'condition': 'host_os == "mac"',
'action': [ 'download_from_google_storage',
'--no_resume',
'--platform=darwin',
'--no_auth',
'--bucket', 'chromium-clang-format',
'-s', 'buildtools/mac/clang-format.sha1',
],
},
{
'name': 'clang_format_linux',
'pattern': '.',
'condition': 'host_os == "linux"',
'action': [ 'download_from_google_storage',
'--no_resume',
'--platform=linux*',
'--no_auth',
'--bucket', 'chromium-clang-format',
'-s', 'buildtools/linux64/clang-format.sha1',
],
},
# Pull the compilers and system libraries for hermetic builds
{
'name': 'sysroot_x86',
'pattern': '.',
'condition': 'checkout_linux and ((checkout_x86 or checkout_x64))',
'action': ['python', 'build/linux/sysroot_scripts/install-sysroot.py',
'--arch=x86'],
},
{
'name': 'sysroot_x64',
'pattern': '.',
'condition': 'checkout_linux and (checkout_x64)',
'action': ['python', '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',
'action': ['python', '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', 'tools/clang/scripts/update.py'],
},
{
# Pull rc binaries using checked-in hashes.
'name': 'rc_win',
'pattern': '.',
'condition': 'checkout_win and (host_os == "win")',
'action': [ 'download_from_google_storage',
'--no_resume',
'--no_auth',
'--bucket', 'chromium-browser-clang/rc',
'-s', 'build/toolchain/win/rc/win/rc.exe.sha1',
],
},
# Pull binutils for linux hermetic builds
{
'name': 'binutils',
'pattern': 'src/third_party/binutils',
'condition': 'host_os == "linux"',
'action': [
'python',
'third_party/binutils/download.py',
],
},
# Update build/util/LASTCHANGE.
{
'name': 'lastchange',
'pattern': '.',
'action': ['python', 'build/util/lastchange.py',
'-o', 'build/util/LASTCHANGE'],
},
]
recursedeps = [
# buildtools provides clang_format, libc++, and libc++abi
'buildtools',
]