Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 34bd0ef

Browse files
authored
Don’t build benchmarking binaries on Windows. (#6428)
1 parent ae4db44 commit 34bd0ef

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

BUILD.gn

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,15 @@ group("flutter") {
3838
"$flutter_root/flow:flow_unittests",
3939
"$flutter_root/fml:fml_unittests",
4040
"$flutter_root/runtime:runtime_unittests",
41-
"$flutter_root/shell/common:shell_benchmarks",
4241
"$flutter_root/shell/common:shell_unittests",
4342
"$flutter_root/shell/platform/embedder:embedder_unittests",
4443
"$flutter_root/synchronization:synchronization_unittests",
4544
"$flutter_root/third_party/txt:txt_unittests",
4645
]
46+
47+
if (!is_win) {
48+
public_deps += [ "$flutter_root/shell/common:shell_benchmarks" ]
49+
}
4750
}
4851
}
4952

0 commit comments

Comments
 (0)