From b825bf8c987bda2a33f193438a1579ecdc9c7b76 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Thu, 7 Oct 2021 13:43:01 -0700 Subject: [PATCH] Specify the root directory for Dart frontend server sources (#28849) --- build/dart/rules.gni | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/dart/rules.gni b/build/dart/rules.gni index 43d44498e8408..d578b4890102d 100644 --- a/build/dart/rules.gni +++ b/build/dart/rules.gni @@ -13,7 +13,7 @@ frontend_server_files = exec_script("//third_party/dart/tools/list_dart_files.py", [ "absolute", - rebase_path("."), + rebase_path("//flutter/flutter_frontend_server"), ], "list lines") @@ -21,7 +21,7 @@ frontend_server_files += exec_script("//third_party/dart/tools/list_dart_files.py", [ "absolute", - rebase_path("../../third_party/dart/pkg"), + rebase_path("//third_party/dart/pkg"), ], "list lines")