From cf9cafa730445e8ade652d97ec754f0fe8fc95ea Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Tue, 4 Apr 2023 13:18:26 -0700 Subject: [PATCH] Add an gclient DEPS to shorebirdtech/updater This makes a single engine git hash correctly imply the full dependency chain instead of inserting libupdater from the side. We still need to teach GN/Ninja to build the updater but this is a first step. --- DEPS | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/DEPS b/DEPS index 87d7332e9b947..e30bcb8f777cb 100644 --- a/DEPS +++ b/DEPS @@ -20,6 +20,9 @@ vars = { 'ocmock_git': 'https://github.com/erikdoe/ocmock.git', 'skia_revision': '0d31aa1f49cb8cfd790c44d92a9a023839524865', + 'updater_git': 'https://github.com/shorebirdtech/updater.git', + 'updater_rev': '5055c397e8fe3d8c412a24c97096225ba9d7a076', + # WARNING: DO NOT EDIT canvaskit_cipd_instance MANUALLY # See `lib/web_ui/README.md` for how to roll CanvasKit to a new version. 'canvaskit_cipd_instance': '61aeJQ9laGfEFF_Vlc_u0MCkqB6xb2hAYHRBxKH-Uw4C', @@ -566,6 +569,9 @@ deps = { 'src/third_party/ocmock': Var('ocmock_git') + '@' + Var('ocmock_rev'), + 'src/third_party/updater': + Var('updater_git') + '@' + Var('updater_rev'), + 'src/third_party/libjpeg-turbo': Var('fuchsia_git') + '/third_party/libjpeg-turbo' + '@' + '0fb821f3b2e570b2783a94ccd9a2fb1f4916ae9f',