mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-26 23:13:27 +08:00
dbd1dce67d
Add `"download_fuchsia_deps": False` to the dot-gclient file as this is for linux, not fuchsia, so the dependencies are not necessary. Also, change various paths in flutter-engine.mk to ensure that the package builds correctly. Remove patch 0005-skip-configuration-dependency-if-unit-tests-are-disa.patch which is upstream. Tested with tests.package.test_flutter.TestFlutter.test_run Signed-off-by: Adam Duskett <adam.duskett@amarulasolutions.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15 lines
419 B
Plaintext
15 lines
419 B
Plaintext
# Definition file to download flutter-engine
|
|
# Inspired by the output of meta-flutter/lib/gn.py
|
|
|
|
solutions = [{
|
|
"managed": False,
|
|
"name": "src/flutter",
|
|
"url": "https://github.com/flutter/engine.git@!FLUTTER_VERSION!",
|
|
"custom_vars": {
|
|
"download_android_deps": False,
|
|
"download_windows_deps": False,
|
|
"download_linux_deps": False,
|
|
"download_fuchsia_deps": False
|
|
},
|
|
}]
|