Force ordering of :yoga/:yogaForDebug

Summary:
Due to testutil depending on :yoga, we are always linking against both
:yoga and :yogaForDebug in tests. This is only working right now due to luck in
how Buck orders the link line. Adding a dependency is silly but it enforces
that Buck maintain the ordering that we currently have even when it changes how
it does its traversal.

Reviewed By: philipjameson

Differential Revision: D15973581

fbshipit-source-id: 3d18aff578ee4d56175ce5efae52b56aeb2d9586
This commit is contained in:
Chris Hopman
2019-06-24 17:06:43 -07:00
committed by Facebook Github Bot
parent 39996512fc
commit f539d68049

1
BUCK
View File

@@ -38,6 +38,7 @@ yoga_cxx_library(
tests = [":YogaTests"],
visibility = ["PUBLIC"],
deps = [
":yoga",
yoga_dep("lib/fb:ndklog"),
],
)