blob: f72db40ce1db2669348639ae1dd31a49db2ff6d7 [file] [log] [blame]
Yigit Boyar2eb51992016-12-13 15:00:07 -08001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17// If you change this file, you should also change the settings gradle inside
18// the sub project.
Yigit Boyar34e50312017-01-14 14:06:13 -080019
20include ':apptoolkit-core'
21project(':apptoolkit-core').projectDir = new File("core")
22
Sergey Vasilinets459caad2017-03-01 11:11:34 -080023include ':apptoolkit-core-testing'
24project(':apptoolkit-core-testing').projectDir = new File("core-testing")
25
Yigit Boyar2eb51992016-12-13 15:00:07 -080026include ':lifecycle:extensions'
27project(':lifecycle:extensions').projectDir = new File("../lifecycle/extensions")
28
Jason Neufeld5349f0e2017-02-17 11:17:55 -080029include ':lifecycle:reactivestreams'
30project(':lifecycle:reactivestreams').projectDir = new File("../lifecycle/reactivestreams")
31
Yigit Boyar2eb51992016-12-13 15:00:07 -080032include ':lifecycle:runtime'
33project(':lifecycle:runtime').projectDir = new File("../lifecycle/runtime")
34
35include ':lifecycle:common'
36project(':lifecycle:common').projectDir = new File("../lifecycle/common")
37
38include ':lifecycle:compiler'
39project(':lifecycle:compiler').projectDir = new File("../lifecycle/compiler")
40
41include ':lifecycle:integration-tests:test-app'
42project(':lifecycle:integration-tests:test-app').projectDir = new File("../lifecycle/integration-tests/test-app")
43
44include ':room:common'
45project(':room:common').projectDir = new File("../room/common")
46
47include ':room:runtime'
48project(':room:runtime').projectDir = new File("../room/runtime")
49
50include ':room:compiler'
51project(':room:compiler').projectDir = new File("../room/compiler")
52
53include ':room:db'
54project(':room:db').projectDir = new File("../room/db")
55
56include ":room:db-impl"
57project(':room:db-impl').projectDir = new File("../room/db-impl")
58
59include ':room:integration-tests:testapp'
Yigit Boyar34e50312017-01-14 14:06:13 -080060project(':room:integration-tests:testapp').projectDir = new File("../room/integration-tests/testapp")
Sergey Vasilinetse69e4702017-02-10 02:26:10 -080061
62/////////////////////////////
63//
64// External
65//
66/////////////////////////////
67
68File externalRoot = new File(rootDir, '../../../external')
69
70include ':doclava'
71project(':doclava').projectDir = new File(externalRoot, 'doclava')
72
73include ':jdiff'
74project(':jdiff').projectDir = new File(externalRoot, 'jdiff')