Skip to content

Commit 68f11fa

Browse files
authored
Add a temporary target to help with the migration to gn artifacts. (flutter#34049)
1 parent 1b5c339 commit 68f11fa

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

ci/builders/linux_android_debug_engine.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"include_paths": [
8888
"out/android_debug/zip_archives/android-arm/symbols.zip",
8989
"out/android_debug/zip_archives/flutter_download_io",
90-
"out/android_debug/zip_archives/android-arm/sky_engine.zip",
90+
"out/android_debug/zip_archives/sky_engine.zip",
9191
"out/android_debug/zip_archives/android-javadoc.zip"
9292
]
9393
}
@@ -106,7 +106,7 @@
106106
"config": "android_debug",
107107
"targets": [
108108
"flutter",
109-
"flutter/sky/dist:zip",
109+
"flutter/sky/dist:zip_old_location",
110110
"flutter/shell/platform/android:embedding_jars",
111111
"flutter/shell/platform/android:abi_jars",
112112
"flutter/shell/platform/android:robolectric_tests"

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)