From 6ae52bcc733c56d8f3a709af2cf315590c61eaf1 Mon Sep 17 00:00:00 2001 From: Ben Konyi Date: Mon, 23 Sep 2019 13:28:42 -0700 Subject: [PATCH] Update --dart-vm-flags whitelist to include --write-service-info and --sample-buffer-duration (#12395) These flags were recently added and are safe to pass through to the VM for development. --- shell/common/switches.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shell/common/switches.cc b/shell/common/switches.cc index dfea70a0e..7396df7fa 100644 --- a/shell/common/switches.cc +++ b/shell/common/switches.cc @@ -45,6 +45,8 @@ static const std::string gDartFlagsWhitelist[] = { "--profile_period", "--random_seed", "--enable_mirrors", + "--write-service-info", + "--sample-buffer-duration", }; // clang-format on -- GitLab