From 4a39184fecdc7d8b5d4af45ccd64d9ddc7b97bc0 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Tue, 8 Oct 2019 15:15:47 -0700 Subject: [PATCH] Auto-formatter fixes for BUILD.gn files (flutter/engine#13005) --- engine/src/flutter/BUILD.gn | 2 +- engine/src/flutter/frontend_server/BUILD.gn | 3 +-- engine/src/flutter/shell/platform/windows/BUILD.gn | 11 ++++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/engine/src/flutter/BUILD.gn b/engine/src/flutter/BUILD.gn index e4ce1dea10b..f03094d02ff 100644 --- a/engine/src/flutter/BUILD.gn +++ b/engine/src/flutter/BUILD.gn @@ -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" ] } diff --git a/engine/src/flutter/frontend_server/BUILD.gn b/engine/src/flutter/frontend_server/BUILD.gn index 6cb8ce88f3c..c4060a5df66 100644 --- a/engine/src/flutter/frontend_server/BUILD.gn +++ b/engine/src/flutter/frontend_server/BUILD.gn @@ -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", ] @@ -39,4 +39,3 @@ if (is_fuchsia_host || is_fuchsia) { ] } } - diff --git a/engine/src/flutter/shell/platform/windows/BUILD.gn b/engine/src/flutter/shell/platform/windows/BUILD.gn index 7f94225e984..cd496949eac 100644 --- a/engine/src/flutter/shell/platform/windows/BUILD.gn +++ b/engine/src/flutter/shell/platform/windows/BUILD.gn @@ -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", ] }