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

Commit 0c0b894

Browse files
committed
Add a temporary target to help with the migration to gn artifacs.
We'll save the file to the new and old locations while we transition from recipes generated artifacts to gn generated ones. Once we finish that implementation we will start standardizing artifact names and location. Bug: flutter/flutter#105351
1 parent 7455e27 commit 0c0b894

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

sky/dist/BUILD.gn

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,19 @@ if (is_android) {
3737
]
3838
deps = [ ":sky_engine" ]
3939
}
40+
41+
zip_bundle("zip_old_location") {
42+
# TODO godofredoc: remove after we migrate the tool to use the new location.
43+
# Bug: https://github.com/flutter/flutter/issues/105351
44+
output = "sky_engine.zip"
45+
files = [
46+
{
47+
source = "$root_build_dir/dist/packages/sky_engine"
48+
destination = "sky_engine"
49+
},
50+
]
51+
deps = [ ":sky_engine" ]
52+
}
4053
}
4154

4255
group("dist") {

0 commit comments

Comments
 (0)