blob: ef9ee248d456e9c35199fb48a880b0a09db38835 [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 */
Aurimas Liutikasbc1dbeb2021-05-04 13:36:59 -070016
Tiem Songee0da742024-01-03 14:08:46 -080017/**
18 * This file was created using the `create_project.py` script located in the
19 * `<AndroidX root>/development/project-creator` directory.
20 *
21 * Please use that script when creating a new project, rather than copying an existing project and
22 * modifying its settings.
23 */
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070024import androidx.build.Publish
Ian Lakebef57532018-08-17 16:14:13 -070025
26plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +010027 id("AndroidXPlugin")
28 id("com.android.library")
Ian Lakebef57532018-08-17 16:14:13 -070029 id("kotlin-android")
Dustin Lam56130b22019-07-26 17:17:09 -070030 id("androidx.benchmark")
Ian Lakebef57532018-08-17 16:14:13 -070031}
32
33dependencies {
Dustin Lameec21a42020-10-13 15:12:26 -070034 androidTestImplementation(projectOrArtifact(":benchmark:benchmark-junit4"))
Ian Lakebef57532018-08-17 16:14:13 -070035 androidTestImplementation(project(":navigation:navigation-runtime"))
Matthew Fraschilla1c2fe0462019-11-20 12:52:04 -080036 androidTestImplementation(project(":internal-testutils-navigation"))
Aurimas Liutikasbc1dbeb2021-05-04 13:36:59 -070037 androidTestImplementation(libs.junit)
38 androidTestImplementation(libs.testExtJunit)
39 androidTestImplementation(libs.testCore)
40 androidTestImplementation(libs.testRunner)
41 androidTestImplementation(libs.testRules)
42 androidTestImplementation(libs.kotlinStdlib)
Ian Lakebef57532018-08-17 16:14:13 -070043}
44
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070045androidx {
Ian Lakebef57532018-08-17 16:14:13 -070046 name = "Navigation Benchmarks"
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070047 publish = Publish.NONE
Ian Lakebef57532018-08-17 16:14:13 -070048 inceptionYear = "2018"
49 description = "Navigation Benchmarks"
50}
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070051
52android {
53 namespace "androidx.navigation.benchmark"
54}