blob: c6f56f15ec0c26cfb60707a2a39d7812ac95620e [file] [log] [blame]
Yigit Boyar450ed382017-03-02 09:48:25 -08001/*
2 * Copyright (C) 2017 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// settings file to include support lib sources.
18def supportRootDir = new File("../.")
19
20include ':support-core-utils'
21project(':support-core-utils').projectDir = new File(supportRootDir, 'core-utils')
22
23include ':support-fragment'
24project(':support-fragment').projectDir = new File(supportRootDir, 'fragment')
25
26include ':support-compat'
27project(':support-compat').projectDir = new File(supportRootDir, 'compat')
28
29include ':support-annotations'
30project(':support-annotations').projectDir = new File(supportRootDir, 'annotations')
31
32include ':support-core-ui'
33project(':support-core-ui').projectDir = new File(supportRootDir, 'core-ui')
34
35include ':support-appcompat-v7'
36project(':support-appcompat-v7').projectDir = new File(rootDir, 'v7/appcompat')