blob: 66e8c38557d0f6a1a3a9726a9a1ba07e05205780 [file] [log] [blame]
Ian Lakebef57532018-08-17 16:14:13 -07001/*
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 */
16import static androidx.build.dependencies.DependenciesKt.*
17import androidx.build.LibraryGroups
18import androidx.build.LibraryVersions
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070019import androidx.build.Publish
Ian Lakebef57532018-08-17 16:14:13 -070020
21plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +010022 id("AndroidXPlugin")
23 id("com.android.library")
Ian Lakebef57532018-08-17 16:14:13 -070024 id("kotlin-android")
25}
26
27dependencies {
28 androidTestImplementation(project(":benchmark"))
29 androidTestImplementation(project(":navigation:navigation-runtime"))
30 androidTestImplementation(project(":navigation:navigation-testing"))
31 androidTestImplementation(JUNIT)
Dustin Lam3979d962019-04-08 10:40:19 -070032 androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
33 androidTestImplementation(ANDROIDX_TEST_CORE)
34 androidTestImplementation(ANDROIDX_TEST_RUNNER)
35 androidTestImplementation(ANDROIDX_TEST_RULES)
Ian Lakebef57532018-08-17 16:14:13 -070036 androidTestImplementation(KOTLIN_STDLIB)
37}
38
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070039androidx {
Ian Lakebef57532018-08-17 16:14:13 -070040 name = "Navigation Benchmarks"
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070041 publish = Publish.NONE
Ian Lakebef57532018-08-17 16:14:13 -070042 mavenVersion = LibraryVersions.NAVIGATION
43 mavenGroup = LibraryGroups.NAVIGATION
44 inceptionYear = "2018"
45 description = "Navigation Benchmarks"
46}