Ian Lake | bef5753 | 2018-08-17 16:14:13 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2018 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 | import static androidx.build.dependencies.DependenciesKt.* |
| 17 | import androidx.build.LibraryGroups |
| 18 | import androidx.build.LibraryVersions |
Aurimas Liutikas | 75e93a0 | 2019-05-28 16:31:38 -0700 | [diff] [blame^] | 19 | import androidx.build.Publish |
Ian Lake | bef5753 | 2018-08-17 16:14:13 -0700 | [diff] [blame] | 20 | |
| 21 | plugins { |
Aurimas Liutikas | cdb9f9f | 2019-04-08 12:07:49 +0100 | [diff] [blame] | 22 | id("AndroidXPlugin") |
| 23 | id("com.android.library") |
Ian Lake | bef5753 | 2018-08-17 16:14:13 -0700 | [diff] [blame] | 24 | id("kotlin-android") |
| 25 | } |
| 26 | |
| 27 | dependencies { |
| 28 | androidTestImplementation(project(":benchmark")) |
| 29 | androidTestImplementation(project(":navigation:navigation-runtime")) |
| 30 | androidTestImplementation(project(":navigation:navigation-testing")) |
| 31 | androidTestImplementation(JUNIT) |
Dustin Lam | 3979d96 | 2019-04-08 10:40:19 -0700 | [diff] [blame] | 32 | androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT) |
| 33 | androidTestImplementation(ANDROIDX_TEST_CORE) |
| 34 | androidTestImplementation(ANDROIDX_TEST_RUNNER) |
| 35 | androidTestImplementation(ANDROIDX_TEST_RULES) |
Ian Lake | bef5753 | 2018-08-17 16:14:13 -0700 | [diff] [blame] | 36 | androidTestImplementation(KOTLIN_STDLIB) |
| 37 | } |
| 38 | |
Aurimas Liutikas | 2ad3161 | 2019-04-01 04:23:03 -0700 | [diff] [blame] | 39 | androidx { |
Ian Lake | bef5753 | 2018-08-17 16:14:13 -0700 | [diff] [blame] | 40 | name = "Navigation Benchmarks" |
Aurimas Liutikas | 75e93a0 | 2019-05-28 16:31:38 -0700 | [diff] [blame^] | 41 | publish = Publish.NONE |
Ian Lake | bef5753 | 2018-08-17 16:14:13 -0700 | [diff] [blame] | 42 | mavenVersion = LibraryVersions.NAVIGATION |
| 43 | mavenGroup = LibraryGroups.NAVIGATION |
| 44 | inceptionYear = "2018" |
| 45 | description = "Navigation Benchmarks" |
| 46 | } |