Commit 6a652f1a by Yuly Novikov Committed by Commit Bot

Create dummy DEPS entry for Chromium.

Never actually check out Chromium. Required by autoroller to support updating chromium_revision var. Bug: skia:10572 Change-Id: I8c88a42286f010d2702f9ff646c7bb344153d2fe Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2353730 Commit-Queue: Yuly Novikov <ynovikov@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent 6b2d6f82
......@@ -29,6 +29,9 @@ vars = {
# Version of Chromium our Chromium-based DEPS are mirrored from.
'chromium_revision': 'c8c2c646295cebc116b8b8f3f4cdfa48821f22fb',
# We never want to checkout chromium,
# but need a dummy DEPS entry for the autoroller
'dummy_checkout_chromium': False,
# Current revision of VK-GL-CTS (a.k.a dEQP).
'vk_gl_cts_revision': 'fb86cfb19849570ccc6b4dc5aa0fe0e35432d442',
......@@ -119,6 +122,13 @@ deps = {
'condition': 'not build_with_chromium',
},
# We never want to checkout chromium,
# but need a dummy DEPS entry for the autoroller
'third_party/dummy_chromium': {
'url': '{chromium_git}/chromium/src.git@{chromium_revision}',
'condition': 'dummy_checkout_chromium',
},
'third_party/vulkan_memory_allocator': {
'url': '{chromium_git}/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator@431d6e57284aeb08118ff428dfbd51c94342faa1',
'condition': 'not build_with_chromium',
......
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