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 | */ |
Aurimas Liutikas | bc1dbeb | 2021-05-04 13:36:59 -0700 | [diff] [blame] | 16 | |
Tiem Song | ee0da74 | 2024-01-03 14:08:46 -0800 | [diff] [blame] | 17 | /** |
| 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 Liutikas | 75e93a0 | 2019-05-28 16:31:38 -0700 | [diff] [blame] | 24 | import androidx.build.Publish |
Ian Lake | bef5753 | 2018-08-17 16:14:13 -0700 | [diff] [blame] | 25 | |
| 26 | plugins { |
Aurimas Liutikas | cdb9f9f | 2019-04-08 12:07:49 +0100 | [diff] [blame] | 27 | id("AndroidXPlugin") |
| 28 | id("com.android.library") |
Ian Lake | bef5753 | 2018-08-17 16:14:13 -0700 | [diff] [blame] | 29 | id("kotlin-android") |
Dustin Lam | 56130b2 | 2019-07-26 17:17:09 -0700 | [diff] [blame] | 30 | id("androidx.benchmark") |
Ian Lake | bef5753 | 2018-08-17 16:14:13 -0700 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | dependencies { |
Dustin Lam | eec21a4 | 2020-10-13 15:12:26 -0700 | [diff] [blame] | 34 | androidTestImplementation(projectOrArtifact(":benchmark:benchmark-junit4")) |
Ian Lake | bef5753 | 2018-08-17 16:14:13 -0700 | [diff] [blame] | 35 | androidTestImplementation(project(":navigation:navigation-runtime")) |
Matthew Fraschilla | 1c2fe046 | 2019-11-20 12:52:04 -0800 | [diff] [blame] | 36 | androidTestImplementation(project(":internal-testutils-navigation")) |
Aurimas Liutikas | bc1dbeb | 2021-05-04 13:36:59 -0700 | [diff] [blame] | 37 | androidTestImplementation(libs.junit) |
| 38 | androidTestImplementation(libs.testExtJunit) |
| 39 | androidTestImplementation(libs.testCore) |
| 40 | androidTestImplementation(libs.testRunner) |
| 41 | androidTestImplementation(libs.testRules) |
| 42 | androidTestImplementation(libs.kotlinStdlib) |
Ian Lake | bef5753 | 2018-08-17 16:14:13 -0700 | [diff] [blame] | 43 | } |
| 44 | |
Aurimas Liutikas | 2ad3161 | 2019-04-01 04:23:03 -0700 | [diff] [blame] | 45 | androidx { |
Ian Lake | bef5753 | 2018-08-17 16:14:13 -0700 | [diff] [blame] | 46 | name = "Navigation Benchmarks" |
Aurimas Liutikas | 75e93a0 | 2019-05-28 16:31:38 -0700 | [diff] [blame] | 47 | publish = Publish.NONE |
Ian Lake | bef5753 | 2018-08-17 16:14:13 -0700 | [diff] [blame] | 48 | inceptionYear = "2018" |
| 49 | description = "Navigation Benchmarks" |
| 50 | } |
Aurimas Liutikas | dcfa035 | 2022-03-14 16:05:33 -0700 | [diff] [blame] | 51 | |
| 52 | android { |
| 53 | namespace "androidx.navigation.benchmark" |
| 54 | } |