From e9fb4761a69bf73fe316034394cfab05fa8ccdb1 Mon Sep 17 00:00:00 2001 From: Ryan Macnak Date: Wed, 9 May 2018 13:43:27 -0700 Subject: [PATCH] [fuchsia] Add dependencies needed to build the test shell. (#5216) --- shell/testing/BUILD.gn | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/shell/testing/BUILD.gn b/shell/testing/BUILD.gn index f11a3a2d075..36bc9acc452 100644 --- a/shell/testing/BUILD.gn +++ b/shell/testing/BUILD.gn @@ -21,10 +21,19 @@ executable("testing") { "//garnet/public/lib/fxl", "//third_party/dart/runtime:libdart_jit", "//third_party/dart/runtime/bin:embedded_dart_io", + "//third_party/dart/runtime/bin:libdart_builtin", + "//third_party/dart/runtime/platform:libdart_platform", "//third_party/skia", "//topaz/lib/tonic", ] + if (is_fuchsia) { + deps += [ + "//garnet/public/lib/ui/scenic:client", + "//zircon/public/lib/trace-provider", + ] + } + if (is_linux) { ldflags = [ "-rdynamic" ] }