Skip to content

Commit

Permalink
[Fuchsia] Depend on libtrace when that is what's really meant (flutte…
Browse files Browse the repository at this point in the history
…r#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.
  • Loading branch information
cbracken authored Dec 13, 2018
1 parent 101b27d commit 826f342
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion fml/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
1 change: 1 addition & 0 deletions shell/testing/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]
}
Expand Down

0 comments on commit 826f342

Please sign in to comment.