blob: 9bcb827823d8a7add6e708296e18f75d3265dc65 [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'
Sergey Vasilinets70a2e822017-11-03 12:20:28 -070021 apply from: "buildSrc/build_dependencies.gradle"
Aurimas Liutikasdc807e42017-04-19 12:36:24 -070022 repos.addMavenRepositories(repositories)
Sergey Vasilinetsb085e342016-12-05 19:02:59 -080023 dependencies {
Sergey Vasilinets70a2e822017-11-03 12:20:28 -070024 classpath build_libs.jacoco
25 classpath build_libs.gradle
26 classpath build_libs.kotlin.gradle_plugin
Sergey Vasilinetsb085e342016-12-05 19:02:59 -080027 }
Sergey Vasilinetse69e4702017-02-10 02:26:10 -080028}