From f539d68049c5efdc4127658873c7d5898880ec10 Mon Sep 17 00:00:00 2001 From: Chris Hopman Date: Mon, 24 Jun 2019 17:06:43 -0700 Subject: [PATCH] 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 --- BUCK | 1 + 1 file changed, 1 insertion(+) diff --git a/BUCK b/BUCK index e11649b9..b6df1dde 100644 --- a/BUCK +++ b/BUCK @@ -38,6 +38,7 @@ yoga_cxx_library( tests = [":YogaTests"], visibility = ["PUBLIC"], deps = [ + ":yoga", yoga_dep("lib/fb:ndklog"), ], )