Skip to content

Commit 44785da

Browse files
authored
Roll gn to c97a86a72105f3328a540f5a5ab17d11989ab7dd (flutter#161012)
The current version is more than 3 years old. ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [x] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [x] I signed the [CLA]. - [ ] I listed at least one issue that this PR fixes in the description above. - [ ] I updated/added relevant documentation (doc comments with `///`). - [ ] I added new tests to check the change I am making, or this PR is [test-exempt]. - [x] I followed the [breaking change policy] and added [Data Driven Fixes] where supported. - [ ] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on [Discord]. <!-- Links --> [Contributor Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview [Tree Hygiene]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md [test-exempt]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests [Flutter Style Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md [Features we expect every widget to implement]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement [CLA]: https://cla.developers.google.com/ [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes [Discord]: https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md [Data Driven Fixes]: https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
1 parent 8c11026 commit 44785da

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

DEPS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ deps = {
644644
'packages': [
645645
{
646646
'package': 'gn/gn/${{platform}}',
647-
'version': 'git_revision:b79031308cc878488202beb99883ec1f2efd9a6d'
647+
'version': 'git_revision:c97a86a72105f3328a540f5a5ab17d11989ab7dd'
648648
},
649649
],
650650
'dep_type': 'cipd',

engine/src/flutter/shell/gpu/BUILD.gn

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,9 @@ if (is_mac) {
114114
]
115115

116116
deps = [
117-
"//flutter/testing",
118117
":gpu_surface_metal",
119-
"//flutter/impeller/fixtures",
120118
"//flutter/fml",
119+
"//flutter/impeller/fixtures",
121120
"//flutter/runtime",
122121
"//flutter/runtime:libdart",
123122
"//flutter/testing",

engine/src/flutter/shell/platform/fuchsia/flutter/BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,11 +520,11 @@ if (enable_unittests) {
520520
]
521521

522522
deps = [
523-
"tests/fakes",
524523
":flutter_runner_fixtures",
525524
":flutter_runner_sources",
526525
"${fuchsia_sdk}/pkg/async-testing",
527526
"${fuchsia_sdk}/pkg/sys_cpp_testing",
527+
"tests/fakes",
528528
"//flutter/shell/platform/common/client_wrapper:client_wrapper_library_stubs",
529529
"//flutter/testing",
530530
] + flutter_deps

engine/src/flutter/shell/platform/fuchsia/runtime/dart/utils/BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ template("make_utils") {
4444
"${fuchsia_sdk}/pkg/async-loop-cpp",
4545
"${fuchsia_sdk}/pkg/async-loop-default",
4646
"${fuchsia_sdk}/pkg/fdio",
47-
"${fuchsia_sdk}/pkg/sys_cpp",
4847
"${fuchsia_sdk}/pkg/inspect_component_cpp",
48+
"${fuchsia_sdk}/pkg/sys_cpp",
4949
"${fuchsia_sdk}/pkg/trace",
5050
"${fuchsia_sdk}/pkg/vfs_cpp",
5151
"${fuchsia_sdk}/pkg/zx",

engine/src/flutter/shell/platform/linux/BUILD.gn

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ source_set("flutter_linux_sources") {
8080
"fl_binary_messenger_private.h",
8181
"fl_dart_project_private.h",
8282
"fl_engine_private.h",
83-
"fl_keyboard_handler.h",
84-
"fl_keyboard_manager.h",
85-
"fl_key_event.h",
8683
"fl_key_channel_responder.h",
8784
"fl_key_embedder_responder.h",
8885
"fl_key_embedder_responder_private.h",
86+
"fl_key_event.h",
87+
"fl_keyboard_handler.h",
88+
"fl_keyboard_manager.h",
8989
"fl_method_call_private.h",
9090
"fl_method_channel_private.h",
9191
"fl_method_codec_private.h",

0 commit comments

Comments
 (0)