From de1dccae31b3c7c62f0e19102b7223d747f413ed Mon Sep 17 00:00:00 2001 From: Joel Winarske Date: Wed, 31 May 2023 18:37:12 -0700 Subject: Flutter bbclass refactor -Removes use of flutter bbclass runtime modes Installed modes are determined by flutter-engine package config flags. Default modes are debug, profile, and release. -Single json file based on runtime=release. If additional parameters are needed this happens as part of workspace automation. Scott Murray: - update packagegroup-agl-demo-platform-flutter Bug-AGL: SPEC-4819 Change-Id: I58fc1b30ea3367ec5f47f52b60951cf0be31dcbc Signed-off-by: Joel Winarske Signed-off-by: Scott Murray --- .../files/flutter_cluster_dashboard_on_bg-debug.json | 17 ----------------- .../files/flutter_cluster_dashboard_on_bg-profile.json | 18 ------------------ .../files/flutter_cluster_dashboard_on_bg-release.json | 11 ----------- .../files/flutter_cluster_dashboard_on_bg.json | 11 +++++++++++ 4 files changed, 11 insertions(+), 46 deletions(-) delete mode 100644 recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg-debug.json delete mode 100644 recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg-profile.json delete mode 100644 recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg-release.json create mode 100644 recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg.json (limited to 'recipes-demo/flutter-cluster-dashboard/files') diff --git a/recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg-debug.json b/recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg-debug.json deleted file mode 100644 index 3d92b45f6..000000000 --- a/recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg-debug.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "view": [ - { - "window_type": "BG", - "bundle_path": "/usr/share/flutter/flutter_cluster_dashboard", - "vm_args": [ - "--observatory-host", - "0.0.0.0", - "--observatory-port", - "1234" - ], - "width": 1920, - "height": 1080, - "fullscreen": true - } - ] -} \ No newline at end of file diff --git a/recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg-profile.json b/recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg-profile.json deleted file mode 100644 index aca303fb1..000000000 --- a/recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg-profile.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "view": [ - { - "window_type": "BG", - "bundle_path": "/usr/share/flutter/flutter_cluster_dashboard", - "vm_args": [ - "--observatory-host", - "0.0.0.0", - "--observatory-port", - "1234", - "--start-paused" - ], - "width": 1920, - "height": 1080, - "fullscreen": true - } - ] -} \ No newline at end of file diff --git a/recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg-release.json b/recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg-release.json deleted file mode 100644 index eb75dc4f9..000000000 --- a/recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg-release.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "view": [ - { - "window_type": "BG", - "bundle_path": "/usr/share/flutter/flutter_cluster_dashboard", - "width": 1920, - "height": 1080, - "fullscreen": true - } - ] -} \ No newline at end of file diff --git a/recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg.json b/recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg.json new file mode 100644 index 000000000..4bd7429a3 --- /dev/null +++ b/recipes-demo/flutter-cluster-dashboard/files/flutter_cluster_dashboard_on_bg.json @@ -0,0 +1,11 @@ +{ + "view": [ + { + "window_type": "BG", + "bundle_path": "/usr/share/flutter/flutter_cluster_dashboard/3.3.7/release", + "width": 1920, + "height": 1080, + "fullscreen": true + } + ] +} -- cgit 1.2.3-korg