From 73a0014b7edf80e40fd0d184fbed0be2cfda5849 Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Tue, 15 May 2018 12:50:10 -0700 Subject: [PATCH] Create an empty group that the Fuchsia bots use to determine the root_out_dir. (#5265) The Fuchsia bots seem to reference this target to figure out the root_out_directory https://fuchsia.googlesource.com/build/+/master/dart/dart_test.gni#67. Note that the presence of the flutter_tester binary location itself is not depended on. Instead, the target is used to infer the directory containing the flutter_tester after a build. Patching the //build repository in Fuchsia would mean making the tree red till a //topaz patch lands. To avoid doing this, we add back the missing reference. --- shell/platform/linux/BUILD.gn | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 shell/platform/linux/BUILD.gn diff --git a/shell/platform/linux/BUILD.gn b/shell/platform/linux/BUILD.gn new file mode 100644 index 000000000..cf9f9736a --- /dev/null +++ b/shell/platform/linux/BUILD.gn @@ -0,0 +1,6 @@ +# Copyright 2018 The Flutter Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +group("linux") { +} -- GitLab