Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Auto-formatter fixes for BUILD.gn files #13005

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ group("flutter") {

if (is_win) {
public_deps += [
"$flutter_root/shell/platform/windows:flutter_windows_unittests",
"$flutter_root/shell/platform/windows/client_wrapper:client_wrapper_windows_unittests",
"$flutter_root/shell/platform/windows:flutter_windows_unittests"
]
}

Expand Down
3 changes: 1 addition & 2 deletions frontend_server/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ if (is_fuchsia_host || is_fuchsia) {
"//third_party/dart-pkg/pub/path",
"//third_party/dart-pkg/pub/usage",
"//third_party/dart/pkg/build_integration",
"//third_party/dart/pkg/frontend_server",
"//third_party/dart/pkg/front_end",
"//third_party/dart/pkg/frontend_server",
"//third_party/dart/pkg/kernel",
"//third_party/dart/pkg/vm",
]
Expand All @@ -39,4 +39,3 @@ if (is_fuchsia_host || is_fuchsia) {
]
}
}

11 changes: 6 additions & 5 deletions shell/platform/windows/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -109,23 +109,24 @@ executable("flutter_windows_unittests") {
testonly = true

sources = [
"win32_window_unittests.cc",
"testing/win32_flutter_window_test.h",
"testing/win32_flutter_window_test.cc",
"testing/win32_flutter_window_test.h",
"win32_window_unittests.cc",
]

public_configs = [ "$flutter_root:config" ]

deps = [
":flutter_windows_source",
":flutter_windows_headers",
"//third_party/rapidjson",
":flutter_windows_fixtures",
":flutter_windows_headers",
":flutter_windows_source",
"$flutter_root/testing",

# TODO(chunhtai): Consider refactoring flutter_root/testing so that there's a testing
# target that doesn't require a Dart runtime to be linked in.
# https://github.com/flutter/flutter/issues/41414.
"//third_party/dart/runtime:libdart_jit",
"//third_party/rapidjson",
]
}

Expand Down