fix gradle compliation (#925)

Summary:
Pull Request resolved: https://github.com/facebook/yoga/pull/925

Gradle is failing to compile yoga for two reasons:
1. Ever since `YogaNodeJNIPhantomRefs` was introduced which uses `DestructorThread.Destructor` from fbjni which was the first direct Java dependency from yoga java to fbjni java code.

2. Adding a missing gradle endpoint for `testutil` since it is now required for yoga unit-tests

Differential Revision: D17274226

fbshipit-source-id: 9a4919f1bb72ac1f52b6b32ce7acbff435d587e4
This commit is contained in:
Amir Shalem
2019-09-10 06:52:06 -07:00
committed by Facebook Github Bot
parent e6e224ce48
commit d14e2cd61d
10 changed files with 91 additions and 8 deletions

View File

@@ -5,8 +5,9 @@
* LICENSE file in the root directory of this source tree.
*/
include ':yoga', ':yogacore', ':yoga-layout', ':yoga:proguard-annotations', ':libfb'
include ':yoga', ':yogacore', ':yoga-layout', ':yoga:proguard-annotations', ':libfb', ':testutil'
project(':yoga').projectDir = file('java')
project(':yoga:proguard-annotations').projectDir = file('java/proguard-annotations')
project(':yoga-layout').projectDir = file('android')
project(':libfb').projectDir = file('lib/fb')
project(':testutil').projectDir = file('testutil')