Skip to content

Commit 8f272d2

Browse files
authored
Roll buildroot to c37164f (flutter#27967)
This eliminates the landmines hook. build/landmines.py writes out a .landmines file at the root of the buildroot. The first step of a `gclient sync` is to check for diffs between that file and the new one, and if found, a clobber is performed. We never actually use this functionality, and the code calls rmtree() which (at least on macos) appears to choke on symlinks. This deletes these scripts, and will be paired with the deletion of the first gclient hook in the DEPS file in flutter/engine during the roll. If we ever need this functionality, it's relatively straightforward to add it back. Issue: flutter#87960
1 parent 734f1c8 commit 8f272d2

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

DEPS

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ allowed_hosts = [
9797
]
9898

9999
deps = {
100-
'src': 'https://github.com/flutter/buildroot.git' + '@' + 'bab43eb08cff63e71de5e7fe816ccf2aea3576a4',
100+
'src': 'https://github.com/flutter/buildroot.git' + '@' + 'c37164f39300c6e42560a5853e16a919688f7b86',
101101

102102
# Fuchsia compatibility
103103
#
@@ -631,17 +631,6 @@ deps = {
631631
}
632632

633633
hooks = [
634-
{
635-
# This clobbers when necessary (based on get_landmines.py). It must be the
636-
# first hook so that other things that get/generate into the output
637-
# directory will not subsequently be clobbered.
638-
'name': 'landmines',
639-
'pattern': '.',
640-
'action': [
641-
'python3',
642-
'src/build/landmines.py',
643-
],
644-
},
645634
{
646635
# Update the Windows toolchain if necessary.
647636
'name': 'win_toolchain',

0 commit comments

Comments
 (0)