blob: 9ce28194734222a46251057ef148499d9993a1ad [file] [log] [blame]
# Copyright 2019 the V8 project authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
vars = {
'binaryen_url': 'https://chromium.googlesource.com/external/github.com/WebAssembly/binaryen',
'emscripten_url': 'https://chromium.googlesource.com/external/github.com/emscripten-core/emscripten',
'llvm_project_url': 'https://chromium.googlesource.com/external/github.com/llvm/llvm-project',
'v8_url': 'https://chromium.googlesource.com/v8/v8',
'wabt_url': 'https://chromium.googlesource.com/external/github.com/WebAssembly/wabt',
# WARNING: This is a mirror of the old LLVM git mirror of the SVN repo. The github
# repo URL is different, and has different hashes.
'llvm-test-suite_url': 'https://chromium.googlesource.com/native_client/pnacl-llvm-testsuite',
# TODO: v8 for testing, Gcc for torture tests, Update llvm test-suite to github
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling binaryen
# and whatever else without interference from each other.
'binaryen_revision': 'c248d90bdc2f439ed04b89aff408412dd7711f1f',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling emscripten
# and whatever else without interference from each other.
'emscripten_revision': '52ed04f424ff0db7d8085c35df3afd7f7b1c9eb7',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling llvm_project
# and whatever else without interference from each other.
'llvm_project_revision': 'ad8010e598d9aa3747c34ce28aa2ba6de1650bd4',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling v8
# and whatever else without interference from each other.
'v8_revision': 'c5fc192efb5920d02028f58d95a3cbcf55502077',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling wabt
# and whatever else without interference from each other.
'wabt_revision': '3625539c176839c9a45d58143767a63c04b95559',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling llvm_test_suite
# and whatever else without interference from each other.
'llvm-test-suite_revision': 'a70e8c81f0bc8e9323dd2559f523544a14577d38',
}
deps = {
'emscripten-releases/binaryen': Var('binaryen_url') + '@' + Var('binaryen_revision'),
'emscripten-releases/emscripten': Var('emscripten_url') + '@' + Var('emscripten_revision'),
'emscripten-releases/llvm-project': Var('llvm_project_url') + '@' + Var('llvm_project_revision'),
'v8': Var('v8_url') + '@' + Var('v8_revision'),
'emscripten-releases/wabt': Var('wabt_url') + '@' + Var('wabt_revision'),
'emscripten-releases/llvm-test-suite': Var('llvm-test-suite_url') + '@' + Var('llvm-test-suite_revision'),
}
hooks = [
{
'name': 'cmake',
'pattern': '.',
'action': ['python3', 'emscripten-releases/waterfall/src/build.py',
'--sync-include=cmake,nodejs,java,sysroot','--no-build', '--no-test',
'--prebuilt-dir=emscripten-releases', '--v8-dir=v8'],
},
]
recursedeps = [
'v8'
]