Commit 95b086b4 by Yuly Novikov Committed by Commit Bot

Pull buildtools DEPS directly instead of via recursedeps

libc++abi will be required after http://crrev.com/c/2729355 Switching others preemptively Bug: chromium:1177288 Change-Id: I4d6dd8415b63de21bef8c750b9cf5c7cf23c9022 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2727647Reviewed-by: 's avatarNico Weber <thakis@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
parent 210a464e
...@@ -85,6 +85,54 @@ deps = { ...@@ -85,6 +85,54 @@ deps = {
'condition': 'not build_with_chromium', 'condition': 'not build_with_chromium',
}, },
'buildtools/clang_format/script': {
'url': '{chromium_git}/external/github.com/llvm/llvm-project/clang/tools/clang-format.git@99803d74e35962f63a775f29477882afd4d57d94',
'condition': 'not build_with_chromium',
},
'buildtools/linux64': {
'packages': [
{
'package': 'gn/gn/linux-amd64',
'version': 'git_revision:dfcbc6fed0a8352696f92d67ccad54048ad182b3',
}
],
'dep_type': 'cipd',
'condition': 'not build_with_chromium and host_os == "linux"',
},
'buildtools/mac': {
'packages': [
{
'package': 'gn/gn/mac-${{arch}}',
'version': 'git_revision:dfcbc6fed0a8352696f92d67ccad54048ad182b3',
}
],
'dep_type': 'cipd',
'condition': 'not build_with_chromium and host_os == "mac"',
},
'buildtools/third_party/libc++/trunk': {
'url': '{chromium_git}/external/github.com/llvm/llvm-project/libcxx.git@8fa87946779682841e21e2da977eccfb6cb3bded',
'condition': 'not build_with_chromium',
},
'buildtools/third_party/libc++abi/trunk': {
'url': '{chromium_git}/external/github.com/llvm/llvm-project/libcxxabi.git@6918862bfc2bff22b45058fac22b1596c49982fb',
'condition': 'not build_with_chromium',
},
'buildtools/win': {
'packages': [
{
'package': 'gn/gn/windows-amd64',
'version': 'git_revision:dfcbc6fed0a8352696f92d67ccad54048ad182b3',
}
],
'dep_type': 'cipd',
'condition': 'not build_with_chromium and host_os == "win"',
},
'testing': { 'testing': {
'url': '{chromium_git}/chromium/src/testing@4138b13c164ce60bb99115a078957b7a952ce32f', 'url': '{chromium_git}/chromium/src/testing@4138b13c164ce60bb99115a078957b7a952ce32f',
'condition': 'not build_with_chromium', 'condition': 'not build_with_chromium',
...@@ -485,8 +533,6 @@ hooks = [ ...@@ -485,8 +533,6 @@ hooks = [
] ]
recursedeps = [ recursedeps = [
# buildtools provides clang_format.
'buildtools',
'third_party/googletest', 'third_party/googletest',
'third_party/jsoncpp', 'third_party/jsoncpp',
'third_party/vulkan-deps', 'third_party/vulkan-deps',
......
...@@ -33,6 +33,12 @@ def FindSrcDirPath(): ...@@ -33,6 +33,12 @@ def FindSrcDirPath():
ANGLE_CHROMIUM_DEPS = [ ANGLE_CHROMIUM_DEPS = [
'build', 'build',
'buildtools', 'buildtools',
'buildtools/clang_format/script',
'buildtools/linux64',
'buildtools/mac',
'buildtools/third_party/libc++/trunk',
'buildtools/third_party/libc++abi/trunk',
'buildtools/win',
'testing', 'testing',
'third_party/abseil-cpp', 'third_party/abseil-cpp',
'third_party/catapult', 'third_party/catapult',
......
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