blob: 155a836e3bcf88fe10a8829113ee70f1265ad080 [file] [log] [blame]
Sergey Vasilinetsb085e342016-12-05 19:02:59 -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
17buildscript {
Yigit Boyar2eb51992016-12-13 15:00:07 -080018 ext.supportRootFolder = new File(project.projectDir, "../")
Aurimas Liutikasdc807e42017-04-19 12:36:24 -070019 apply from: 'buildSrc/repos.gradle'
Yigit Boyar2eb51992016-12-13 15:00:07 -080020 apply from: 'init.gradle'
Aurimas Liutikasdc807e42017-04-19 12:36:24 -070021 repos.addMavenRepositories(repositories)
Sergey Vasilinetsb085e342016-12-05 19:02:59 -080022 dependencies {
Sergey Vasilinets8df87b02017-04-27 17:17:59 -070023 classpath libs.jacoco
Yigit Boyar450ed382017-03-02 09:48:25 -080024 classpath libs.gradle
25 classpath libs.kotlin.gradle_plugin
Sergey Vasilinetsb085e342016-12-05 19:02:59 -080026 }
Sergey Vasilinetse69e4702017-02-10 02:26:10 -080027}