From d336248246597316ddeaceef0cfdf84400f98329 Mon Sep 17 00:00:00 2001 From: Kaushik Iska Date: Fri, 25 Oct 2019 16:25:15 -0700 Subject: [PATCH] [flutter_runner] Remove the checks for libdart profiler symbols (flutter/engine#13364) Since the runner binaries are statically linked, we do not need to look for the libdart profiler symbols separately. --- .../src/flutter/shell/platform/fuchsia/dart_runner/main.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/engine/src/flutter/shell/platform/fuchsia/dart_runner/main.cc b/engine/src/flutter/shell/platform/fuchsia/dart_runner/main.cc index 7133ecc964b..98bd64eb0e5 100644 --- a/engine/src/flutter/shell/platform/fuchsia/dart_runner/main.cc +++ b/engine/src/flutter/shell/platform/fuchsia/dart_runner/main.cc @@ -51,13 +51,8 @@ int main(int argc, const char** argv) { #if !defined(DART_PRODUCT) #if defined(AOT_RUNTIME) - RegisterProfilerSymbols( - "pkg/data/libdart_precompiled_runtime.dartprofilersymbols", - "libdart_precompiled_runtime.so"); RegisterProfilerSymbols("pkg/data/dart_aot_runner.dartprofilersymbols", ""); #else - RegisterProfilerSymbols("pkg/data/libdart_jit.dartprofilersymbols", - "libdart_jit.so"); RegisterProfilerSymbols("pkg/data/dart_jit_runner.dartprofilersymbols", ""); #endif // defined(AOT_RUNTIME) #endif // !defined(DART_PRODUCT)