Skip to content

Commit 5d61a01

Browse files
Auto-formatter fixes for BUILD.gn files (flutter#13005)
1 parent c19fc2f commit 5d61a01

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ group("flutter") {
7373

7474
if (is_win) {
7575
public_deps += [
76+
"$flutter_root/shell/platform/windows:flutter_windows_unittests",
7677
"$flutter_root/shell/platform/windows/client_wrapper:client_wrapper_windows_unittests",
77-
"$flutter_root/shell/platform/windows:flutter_windows_unittests"
7878
]
7979
}
8080

frontend_server/BUILD.gn

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ if (is_fuchsia_host || is_fuchsia) {
1919
"//third_party/dart-pkg/pub/path",
2020
"//third_party/dart-pkg/pub/usage",
2121
"//third_party/dart/pkg/build_integration",
22-
"//third_party/dart/pkg/frontend_server",
2322
"//third_party/dart/pkg/front_end",
23+
"//third_party/dart/pkg/frontend_server",
2424
"//third_party/dart/pkg/kernel",
2525
"//third_party/dart/pkg/vm",
2626
]
@@ -39,4 +39,3 @@ if (is_fuchsia_host || is_fuchsia) {
3939
]
4040
}
4141
}
42-

shell/platform/windows/BUILD.gn

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,23 +109,24 @@ executable("flutter_windows_unittests") {
109109
testonly = true
110110

111111
sources = [
112-
"win32_window_unittests.cc",
113-
"testing/win32_flutter_window_test.h",
114112
"testing/win32_flutter_window_test.cc",
113+
"testing/win32_flutter_window_test.h",
114+
"win32_window_unittests.cc",
115115
]
116116

117117
public_configs = [ "$flutter_root:config" ]
118118

119119
deps = [
120-
":flutter_windows_source",
121-
":flutter_windows_headers",
122-
"//third_party/rapidjson",
123120
":flutter_windows_fixtures",
121+
":flutter_windows_headers",
122+
":flutter_windows_source",
124123
"$flutter_root/testing",
124+
125125
# TODO(chunhtai): Consider refactoring flutter_root/testing so that there's a testing
126126
# target that doesn't require a Dart runtime to be linked in.
127127
# https://github.com/flutter/flutter/issues/41414.
128128
"//third_party/dart/runtime:libdart_jit",
129+
"//third_party/rapidjson",
129130
]
130131
}
131132

0 commit comments

Comments
 (0)