From 826f3426411f017686d19513d3eaf7334a81f151 Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Thu, 13 Dec 2018 13:13:38 -0800 Subject: [PATCH] [Fuchsia] Depend on libtrace when that is what's really meant (#7214) libtrace-provider has libtrace listed as a dependency when really it does not have any such dependency. This lets trace clients use libtrace-provider as a dependency when what they really mean is libtrace. This errant dependency in trace-provider is being fixed, which means we need to fix these clients. --- fml/BUILD.gn | 2 +- shell/testing/BUILD.gn | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/fml/BUILD.gn b/fml/BUILD.gn index 0f1a34dec..3a7d76df8 100644 --- a/fml/BUILD.gn +++ b/fml/BUILD.gn @@ -149,7 +149,7 @@ source_set("fml") { if (is_fuchsia) { sources += [ "platform/fuchsia/paths_fuchsia.cc" ] - public_deps += [ "//zircon/public/lib/trace-provider" ] + public_deps += [ "//zircon/public/lib/trace" ] } if (is_win) { diff --git a/shell/testing/BUILD.gn b/shell/testing/BUILD.gn index 29b5c5c13..f10d36b98 100644 --- a/shell/testing/BUILD.gn +++ b/shell/testing/BUILD.gn @@ -28,6 +28,7 @@ executable("testing") { if (is_fuchsia) { deps += [ "//garnet/public/lib/ui/scenic:client", + "//zircon/public/lib/trace", "//zircon/public/lib/trace-provider", ] } -- GitLab