Skip to content

Commit 21b1b9f

Browse files
Limit GN header checking in //flutter to the first-party engine subsystems (#827)
Some components that do not support the GN header checks (such as the Dart SDK) are being moved into //flutter/third_party. These directories should be excluded from "gn check". See flutter/flutter#143335
1 parent 5413806 commit 21b1b9f

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.gn

+8-7
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ secondary_source = "//flutter/build/secondary/"
1616
# The set of targets known to pass 'gn check'. When all targets pass, remove
1717
# this.
1818
check_targets = [
19-
"//dart/*",
20-
"//flow/*",
21-
"//flutter/*",
22-
"//glue/*",
23-
"//mojo/*",
24-
"//skia/*",
25-
"//sky/*",
19+
"//flutter/common/*",
20+
"//flutter/display_list/*",
21+
"//flutter/flow/*",
22+
"//flutter/fml/*",
23+
"//flutter/lib/*",
24+
"//flutter/impeller/*",
25+
"//flutter/runtime/*",
26+
"//flutter/shell/*",
2627
]

0 commit comments

Comments
 (0)