diff --git a/engine/src/flutter/sky/dist/BUILD.gn b/engine/src/flutter/sky/dist/BUILD.gn index 76633442bc9..e860b2dcceb 100644 --- a/engine/src/flutter/sky/dist/BUILD.gn +++ b/engine/src/flutter/sky/dist/BUILD.gn @@ -7,6 +7,7 @@ root_dist_dir = "$root_build_dir/dist" copy("sky_viewer") { sources = [ "$root_build_dir/sky_viewer.mojo", + "$root_build_dir/symbols/libsky_viewer_library.so", ] outputs = [ "$root_dist_dir/viewer/{{source_file_part}}" ] diff --git a/engine/src/flutter/sky/tools/big_red_button.py b/engine/src/flutter/sky/tools/big_red_button.py index 286906705c3..09b6b89152f 100755 --- a/engine/src/flutter/sky/tools/big_red_button.py +++ b/engine/src/flutter/sky/tools/big_red_button.py @@ -51,12 +51,14 @@ ARTIFACTS = { 'android-arm': [ Artifact('shell', 'SkyShell.apk'), Artifact('viewer', 'sky_viewer.mojo'), + Artifact('viewer', 'libsky_viewer_library.so'), ], 'linux-x64': [ Artifact('shell', 'icudtl.dat'), Artifact('shell', 'sky_shell'), Artifact('shell', 'sky_snapshot'), Artifact('viewer', 'sky_viewer.mojo'), + Artifact('viewer', 'libsky_viewer_library.so'), ] }