mirror of
https://github.com/encounter/engine.git
synced 2026-03-30 11:09:55 -07:00
55 lines
1.5 KiB
Bash
Executable File
55 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2013 The Flutter Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
#TODO(dnfield): Get rid of this script and instead use proper build rules
|
|
|
|
set -e
|
|
|
|
HOST_TOOLS=$1
|
|
DEVICE_TOOLS=$2
|
|
|
|
if [[ ! -d "$HOST_TOOLS" ]]; then
|
|
echo "Must specify the host out directory containing dart."
|
|
exit 1
|
|
fi
|
|
|
|
if [[ ! -d "$DEVICE_TOOLS" ]]; then
|
|
echo "Must specify the device out directory containing gen_snapshot."
|
|
exit 1
|
|
fi
|
|
|
|
PUB_VERSION=$($HOST_TOOLS/dart-sdk/bin/pub --version)
|
|
echo "Using Pub ${PUB_VERSION} from $HOST_TOOLS/dart-sdk/bin/pub"
|
|
|
|
$HOST_TOOLS/dart-sdk/bin/pub get
|
|
|
|
echo "Using dart from $HOST_TOOLS, gen_snapshot from $DEVICE_TOOLS."
|
|
|
|
OUTDIR="${BASH_SOURCE%/*}/build/android"
|
|
|
|
echo "Creating $OUTDIR..."
|
|
|
|
mkdir -p $OUTDIR
|
|
|
|
echo "Compiling kernel..."
|
|
|
|
"$HOST_TOOLS/dart" \
|
|
"$HOST_TOOLS/gen/frontend_server.dart.snapshot" \
|
|
--sdk-root "$HOST_TOOLS/flutter_patched_sdk" \
|
|
--aot --tfa --target=flutter \
|
|
--output-dill "$OUTDIR/app.dill" \
|
|
"${BASH_SOURCE%/*}/lib/main.dart"
|
|
|
|
echo "Compiling ELF Shared Library..."
|
|
|
|
"$DEVICE_TOOLS/gen_snapshot" --deterministic --snapshot_kind=app-aot-elf --elf="$OUTDIR/libapp.so" --strip "$OUTDIR/app.dill"
|
|
|
|
mkdir -p "${BASH_SOURCE%/*}/android/app/src/main/jniLibs/arm64-v8a"
|
|
mkdir -p "${BASH_SOURCE%/*}/android/app/libs"
|
|
cp "$OUTDIR/libapp.so" "${BASH_SOURCE%/*}/android/app/src/main/jniLibs/arm64-v8a/"
|
|
cp "$DEVICE_TOOLS/../flutter.jar" "${BASH_SOURCE%/*}/android/app/libs/"
|
|
|
|
echo "Created $OUTDIR/libapp.so."
|