forked from facebookincubator/spectrum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
25 lines (23 loc) · 907 Bytes
/
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
// 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 ':android:sample'
include ':android:spectrumdefault'
include ':android:spectrumpluginjpeg'
include ':android:spectrumpluginpng'
include ':android:spectrumpluginwebp'
include ':cpp'
include ':fbjni'
include ':folly'
include ':glog'
include ':libpng'
include ':libwebp'
include ':mozjpeg'
project(':fbjni').projectDir = file('androidLibs/fbjni')
project(':folly').projectDir = file('androidLibs/third-party/folly')
project(':glog').projectDir = file('androidLibs/third-party/glog')
project(':libpng').projectDir = file('androidLibs/third-party/libpng')
project(':libwebp').projectDir = file('androidLibs/third-party/libwebp')
project(':mozjpeg').projectDir = file('androidLibs/third-party/mozjpeg')