The Flutter embedder for Tizen.
- Linux (x64)
- depot_tools
- LLVM (10 or later)
sudo apt install clang-12
- Additional dependencies
sudo apt install git python3 python3-pip rpm2cpio cpiosudo apt install binutils-arm-linux-gnueabi binutils-aarch64-linux-gnu binutils-i686-linux-gnupip3 install requests
-
Create an empty directory called
embedderandcdinto it. -
Create a
.gclientfile by running:gclient config --name=src --unmanaged https://github.com/flutter-tizen/embedder
-
Run
gclient syncto fetch all the source code and dependencies.Note:
gclient syncmust be run every time theDEPSfile (or thegenerate_sysroot.pyscript) is updated.
cd into the generated src directory and run the following commands.
Note: The toolchain path (/usr/lib/llvm-12) can be replaced as you want. For example, you can use ~/tizen-studio/tools/llvm-10 if you have Tizen Studio and the NativeToolchain-Gcc-9.2 package installed.
-
For arm
tools/gn --target-cpu arm --target-toolchain /usr/lib/llvm-12 ninja -C out/tizen_arm
-
For arm64
tools/gn --target-cpu arm64 --target-toolchain /usr/lib/llvm-12 ninja -C out/tizen_arm64
-
For x86
tools/gn --target-cpu x86 --target-toolchain /usr/lib/llvm-12 ninja -C out/tizen_x86
- To build an app (TPK) with the embedder generated in the above, copy the output artifacts (
libflutter_tizen*.so) into the flutter-tizen tool's cached artifacts directory (flutter/bin/cache/artifacts/engine) and runflutter-tizen runorflutter-tizen build tpk. - To use the target device's
libstdc++.soinstead of the embedder's built-in libc++ (third_party/libcxx), provide the--system-cxxoption totools/gn. Tizen 5.5'slibstdc++.sois not compatible with C++17 so you must use a sysroot for Tizen 6.0 or above. - Building NUI-related code requires a sysroot for Tizen 6.5 or above and the
--api-version 6.5option.
This repository contains the following files and directories.
//buildconfig: Contains GN configs for setting up the build environment for the toolchain.secondary: The secondary source tree to find input files for build. See the.gnfile for details.
//flutterfml: A subset of the Flutter engine's fml library.shell/platform/common: Contains C++ client wrapper and other common code used by the embedder implementation. Copied from flutter/engine.shell/platform/embedder: Containsembedder.hwhich defines a low-level API for interacting with the Flutter engine. Copied from flutter/engine.shell/platform/tizen: The Tizen embedder implementation.channels: Internal plugins based on platform channels.public: The public API of the embedder.
third_party/accessibility: A fork of the chromium accessibility library. Copied from flutter/engine.
//toolscheck_symbols.py: A script to check whether the build artifacts contain symbols not defined in the allowlist. Used by continuous integration.download_engine.py: A script to download engine artifacts required for linking. Executed as a hook bygclient sync. The downloaded artifacts can be found in//engine.generate_sysroot.py: A script to generate Tizen sysroots for arm/arm64/x86. Executed as a hook bygclient sync. The sysroots are by default generated in//sysroot.gn: A script to automate runninggn gen.
.gn: The top-level.gnfile referenced bygn.DEPS: The DEPS file used bygclient syncto install dependencies and execute hooks.