blob: 6a340b0329cd365c546190761156431a55f38cba [file] [log] [blame]
Aurimas Liutikas6d20a522017-03-10 17:13:03 -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
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080017import static android.support.dependencies.DependenciesKt.*
18
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -070019plugins {
20 id("SupportAndroidLibraryPlugin")
21}
Aurimas Liutikas6d20a522017-03-10 17:13:03 -080022
23dependencies {
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080024 api(project(":support-fragment"))
25 api(project(":appcompat-v7"))
Kirill Grouchnikov3743a7e2017-09-26 17:55:05 -040026
Jake Wharton66807fc2017-12-05 14:44:35 -050027 implementation(TEST_RUNNER)
28 implementation(ESPRESSO_CORE)
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080029 implementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
30 implementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
31 implementation(JUNIT)
Aurimas Liutikas6d20a522017-03-10 17:13:03 -080032}
33
Aurimas Liutikas63f60162017-09-19 06:30:32 -070034android {
Aurimas Liutikas63f60162017-09-19 06:30:32 -070035 lintOptions {
36 disable 'InvalidPackage' // Lint is unhappy about junit package
37 }
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -070038}
39
40supportLibrary {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080041 legacySourceLocation = true
Aurimas Liutikas63f60162017-09-19 06:30:32 -070042}