From 14f75d112311216fd3aa6cb842dbce7b96338cf2 Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Tue, 20 Apr 2021 16:16:41 -0700 Subject: [PATCH] Migrate third_party/expat dependency to googlecode (#25683) third_party/expat was recently migrated from flutter/buildroot to our googlesource repo at https://flutter.googlesource.com/third_party/expat in [1] and deleted from the buildroot in [2]. This rolls the buildroot and adds the new upstream dependency. [1] https://flutter-review.googlesource.com/c/third_party/expat/+/12700 [2] https://github.com/flutter/buildroot/pull/445 Bug: https://github.com/flutter/flutter/issues/39532 --- DEPS | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/DEPS b/DEPS index 8b667a3739..992bbcef47 100644 --- a/DEPS +++ b/DEPS @@ -96,7 +96,7 @@ allowed_hosts = [ ] deps = { - 'src': 'https://github.com/flutter/buildroot.git' + '@' + '33358ba597f875f6646522fd4ea86c1b31404d77', + 'src': 'https://github.com/flutter/buildroot.git' + '@' + '45ce223bc8d8ca88e2eb2f38eb0cf799e39edd06', # Fuchsia compatibility # @@ -341,6 +341,9 @@ deps = { 'src/third_party/colorama/src': Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8', + 'src/third_party/expat': + Var('flutter_git') + '/third_party/expat' + '@' + '1441fc5252746e53b285d15be7e65e4cd74d97eb', + 'src/third_party/freetype2': Var('flutter_git') + '/third_party/freetype2' + '@' + '1f03c1b2d7f2ae832a4fbe9d12bd96c3c15bbece', -- GitLab