forked from facebook/flipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
33 lines (31 loc) · 1.27 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* 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 ':fbjni'
include ':easywsclient'
include ':sonarcpp'
include ':sample'
include ':tutorial'
include ':doubleconversion'
include ':glog'
include ':libevent'
include ':rsocket'
include ':third-party'
include ':noop'
project(':fbjni').projectDir = file('libs/fbjni')
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/')