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

Commit

Permalink
archive contains libzircon_ffi.so
Browse files Browse the repository at this point in the history
  • Loading branch information
iskakaushik committed Jul 14, 2021
1 parent b8061c9 commit c7762e9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tools/fuchsia/build_fuchsia_artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,10 @@ def CopyFlutterTesterBinIfExists(source, destination):
destination_base = os.path.join(destination, 'flutter_binaries')
FindFileAndCopyTo('flutter_tester', source_root, destination_base)

def CopyZirconFFILibIfExists(source, destination):
source_root = os.path.join(_out_dir, source)
destination_base = os.path.join(destination, 'flutter_binaries')
FindFileAndCopyTo('libzircon_ffi.so', source_root, destination_base)

def CopyToBucketWithMode(source, destination, aot, product, runner_type):
mode = 'aot' if aot else 'jit'
Expand All @@ -146,6 +150,7 @@ def CopyToBucketWithMode(source, destination, aot, product, runner_type):
CopyPath(patched_sdk_dir, dest_sdk_path)
CopyGenSnapshotIfExists(source_root, destination)
CopyFlutterTesterBinIfExists(source_root, destination)
CopyZirconFFILibIfExists(source_root, destination)


def CopyToBucket(src, dst, product=False):
Expand Down

0 comments on commit c7762e9

Please sign in to comment.