Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/530 Use the pre-release of fbjni instead of our bundled copy. I hope this can be made a little less awkward, but it works for now. Reviewed By: jknoxville Differential Revision: D16988077 fbshipit-source-id: 936e414f9b2bf82ccb54b107228d79d01acdbf14
32 lines
1.2 KiB
Groovy
32 lines
1.2 KiB
Groovy
/* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the LICENSE file
|
|
* in the root directory of this source tree.
|
|
*/
|
|
|
|
include ':android'
|
|
include ':folly'
|
|
include ':easywsclient'
|
|
include ':sonarcpp'
|
|
include ':sample'
|
|
include ':tutorial'
|
|
include ':doubleconversion'
|
|
include ':glog'
|
|
include ':libevent'
|
|
include ':rsocket'
|
|
include ':third-party'
|
|
include ':noop'
|
|
|
|
project(':easywsclient').projectDir = file('libs/easywsclient')
|
|
project(':sonarcpp').projectDir = file('xplat')
|
|
project(':sample').projectDir = file('android/sample')
|
|
project(':tutorial').projectDir = file('android/tutorial')
|
|
project(':android').projectDir = file('android')
|
|
project(':doubleconversion').projectDir = file('android/third-party/external/double-conversion/')
|
|
project(':glog').projectDir = file('android/third-party/external/glog/')
|
|
project(':folly').projectDir = file('android/third-party/external/folly/')
|
|
project(':libevent').projectDir = file('android/third-party/external/LibEvent/')
|
|
project(':rsocket').projectDir = file('android/third-party/external/RSocket/')
|
|
project(':third-party').projectDir = file('android/third-party/')
|
|
project(':noop').projectDir = file('android/no-op/')
|