Summary: This enables using gradle for building libfb using the NDK. This is 1/3 of what we need to do. We also need to build yoga itself (which is the easiest as it's just a static library without external dependencies) and yogajni which relies on the other two. Hopefully, this should also make it more obvious why the previous moves were necessary. Reviewed By: emilsjolander Differential Revision: D4913360 fbshipit-source-id: 47658328532fd1ec15f10f8e31ea04691c481011
6 lines
299 B
Groovy
6 lines
299 B
Groovy
include ':yoga', ':yoga-layout', ':yoga:proguard-annotations', ':libfb'
|
|
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')
|