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

Commit e64f326

Browse files
authored
Add missing file to artifacts.zip and win platform. (#39310)
dll.exp, dll.lib and dll.pdb files are missing from the gn generated artifacts.zip. Bug: flutter/flutter#119663
1 parent 679c4b4 commit e64f326

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

build/archives/BUILD.gn

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,18 @@ if (host_os == "win") {
258258
source = "$root_out_dir/flutter_windows.dll"
259259
destination = "flutter_windows.dll"
260260
},
261+
{
262+
source = "$root_out_dir/flutter_windows.dll.exp"
263+
destination = "flutter_windows.dll.exp"
264+
},
265+
{
266+
source = "$root_out_dir/flutter_windows.dll.lib"
267+
destination = "flutter_windows.dll.lib"
268+
},
269+
{
270+
source = "$root_out_dir/flutter_windows.dll.pdb"
271+
destination = "flutter_windows.dll.pdb"
272+
},
261273
]
262274
}
263275
}

0 commit comments

Comments
 (0)