From f10a15ee446fa0ba52fa6078befaf72b2f8650f0 Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Fri, 12 Dec 2025 19:11:27 +0900 Subject: [PATCH 1/3] Add missing DEP updates --- DEPS | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DEPS b/DEPS index 1df44680..318bf462 100644 --- a/DEPS +++ b/DEPS @@ -7,12 +7,12 @@ deps = { 'src/third_party/libcxx': 'https://llvm.googlesource.com/llvm-project/libcxx@bd557f6f764d1e40b62528a13b124ce740624f8f', 'src/third_party/libcxxabi': 'https://llvm.googlesource.com/llvm-project/libcxxabi@a4dda1589d37a7e4b4f7a81ebad01b1083f2e726', 'src/third_party/googletest': 'https://github.com/google/googletest@7f036c5563af7d0329f20e8bb42effb04629f0c0', - 'src/third_party/dart': 'https://dart.googlesource.com/sdk.git@a29e08c72e2ce21813c1edf50cbcdfcac7a7acdd', + 'src/third_party/dart': 'https://dart.googlesource.com/sdk.git@13d929085afa86e5902ed7293cca8509f099ee97', 'src/third_party/clang': { 'packages': [ { 'package': 'fuchsia/third_party/clang/linux-amd64', - 'version': 'git_revision:725656bdd885483c39f482a01ea25d67acf39c46' + 'version': 'git_revision:8c7a2ce01a77c96028fe2c8566f65c45ad9408d3' } ], 'dep_type': 'cipd', @@ -21,7 +21,7 @@ deps = { 'packages': [ { 'package': 'gn/gn/${{platform}}', - 'version': 'git_revision:7a8aa3a08a13521336853a28c46537ec04338a2d', + 'version': 'git_revision:81b24e01531ecf0eff12ec9359a555ec3944ec4e', }, ], 'dep_type': 'cipd', From 785ca162fc879caddb63d780a815330a9bba043d Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Fri, 12 Dec 2025 19:26:54 +0900 Subject: [PATCH 2/3] Apply code format --- flutter/shell/platform/common/public/flutter_messenger.h | 8 ++++---- flutter/shell/platform/tizen/channels/app_control.h | 2 +- flutter/shell/platform/tizen/public/flutter_tizen.h | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/flutter/shell/platform/common/public/flutter_messenger.h b/flutter/shell/platform/common/public/flutter_messenger.h index ddf800a5..b364a573 100644 --- a/flutter/shell/platform/common/public/flutter_messenger.h +++ b/flutter/shell/platform/common/public/flutter_messenger.h @@ -95,8 +95,8 @@ FLUTTER_EXPORT void FlutterDesktopMessengerSetCallback( // Operation is thread-safe. // // See also: |FlutterDesktopMessengerRelease| -FLUTTER_EXPORT FlutterDesktopMessengerRef FlutterDesktopMessengerAddRef( - FlutterDesktopMessengerRef messenger); +FLUTTER_EXPORT FlutterDesktopMessengerRef +FlutterDesktopMessengerAddRef(FlutterDesktopMessengerRef messenger); // Decrements the reference count for the |messenger|. // @@ -126,8 +126,8 @@ FLUTTER_EXPORT bool FlutterDesktopMessengerIsAvailable( // Returns the |messenger| value. // // See also: |FlutterDesktopMessengerUnlock| -FLUTTER_EXPORT FlutterDesktopMessengerRef FlutterDesktopMessengerLock( - FlutterDesktopMessengerRef messenger); +FLUTTER_EXPORT FlutterDesktopMessengerRef +FlutterDesktopMessengerLock(FlutterDesktopMessengerRef messenger); // Unlocks the `FlutterDesktopMessengerRef`. // diff --git a/flutter/shell/platform/tizen/channels/app_control.h b/flutter/shell/platform/tizen/channels/app_control.h index 2bf79e4f..6d02fb6f 100644 --- a/flutter/shell/platform/tizen/channels/app_control.h +++ b/flutter/shell/platform/tizen/channels/app_control.h @@ -42,7 +42,7 @@ DART_EXPORT FLUTTER_EXPORT bool NativeAttachAppControl(int32_t id, namespace flutter { struct AppControlResult { - AppControlResult() : error_code(APP_CONTROL_ERROR_NONE){}; + AppControlResult() : error_code(APP_CONTROL_ERROR_NONE) {}; AppControlResult(int code) : error_code(code) {} // Returns false on error. diff --git a/flutter/shell/platform/tizen/public/flutter_tizen.h b/flutter/shell/platform/tizen/public/flutter_tizen.h index 7d54db2b..6e9c27b4 100644 --- a/flutter/shell/platform/tizen/public/flutter_tizen.h +++ b/flutter/shell/platform/tizen/public/flutter_tizen.h @@ -144,8 +144,8 @@ FlutterDesktopEngineGetPluginRegistrar(FlutterDesktopEngineRef engine, const char* plugin_name); // Returns the messenger associated with the engine. -FLUTTER_EXPORT FlutterDesktopMessengerRef FlutterDesktopEngineGetMessenger( - FlutterDesktopEngineRef engine); +FLUTTER_EXPORT FlutterDesktopMessengerRef +FlutterDesktopEngineGetMessenger(FlutterDesktopEngineRef engine); // Posts an app control to the engine instance. FLUTTER_EXPORT void FlutterDesktopEngineNotifyAppControl( @@ -212,8 +212,8 @@ FLUTTER_EXPORT void* FlutterDesktopViewGetNativeHandle( FlutterDesktopViewRef view); // Returns the resource id of current window. -FLUTTER_EXPORT uint32_t FlutterDesktopViewGetResourceId( - FlutterDesktopViewRef view); +FLUTTER_EXPORT uint32_t +FlutterDesktopViewGetResourceId(FlutterDesktopViewRef view); // Resizes the view. // @warning This API is a work-in-progress and may change. From 45c1b6dc86090c78265371618cea26e967d0e860 Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Fri, 12 Dec 2025 19:32:00 +0900 Subject: [PATCH 3/3] Apply gn file format --- flutter/shell/platform/common/BUILD.gn | 8 ++++---- flutter/shell/platform/tizen/BUILD.gn | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/flutter/shell/platform/common/BUILD.gn b/flutter/shell/platform/common/BUILD.gn index 4e11eb02..08670271 100644 --- a/flutter/shell/platform/common/BUILD.gn +++ b/flutter/shell/platform/common/BUILD.gn @@ -51,14 +51,14 @@ source_set("common_cpp_input") { public_configs = [ "//flutter:config" ] - deps = [ "//flutter/fml:fml" ] + deps = [ "//flutter/fml" ] } source_set("common_cpp_isolate_scope") { public = [ "isolate_scope.h" ] sources = [ "isolate_scope.cc" ] - deps = [ "//flutter/fml:fml" ] + deps = [ "//flutter/fml" ] } source_set("common_cpp_enums") { @@ -95,7 +95,7 @@ source_set("common_cpp_accessibility") { [ "//flutter/third_party/accessibility:accessibility_config" ] public_deps = [ - "//flutter/fml:fml", + "//flutter/fml", "//flutter/shell/platform/embedder:embedder_headers", "//flutter/third_party/accessibility", ] @@ -122,7 +122,7 @@ source_set("common_cpp") { deps = [ ":common_cpp_library_headers", - "//flutter/shell/platform/common/client_wrapper:client_wrapper", + "//flutter/shell/platform/common/client_wrapper", "//flutter/shell/platform/embedder:embedder_headers", ] diff --git a/flutter/shell/platform/tizen/BUILD.gn b/flutter/shell/platform/tizen/BUILD.gn index 5dc44910..0cf06fe3 100644 --- a/flutter/shell/platform/tizen/BUILD.gn +++ b/flutter/shell/platform/tizen/BUILD.gn @@ -197,7 +197,7 @@ template("embedder") { "//flutter/shell/platform/common:common_cpp_input", "//flutter/shell/platform/common:common_cpp_isolate_scope", "//flutter/shell/platform/common:common_cpp_library_headers", - "//flutter/shell/platform/common/client_wrapper:client_wrapper", + "//flutter/shell/platform/common/client_wrapper", "//flutter/shell/platform/embedder:embedder_headers", "//third_party/rapidjson", ] @@ -265,7 +265,7 @@ executable("flutter_tizen_unittests") { ":flutter_tizen_source", "//flutter/shell/platform/common:common_cpp", "//flutter/shell/platform/common:common_cpp_accessibility", - "//flutter/shell/platform/common/client_wrapper:client_wrapper", + "//flutter/shell/platform/common/client_wrapper", "//third_party/googletest:gtest_main", "//third_party/rapidjson", ]