diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:50 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:50 +0000 |
commit | def92d1b8e9d373e2f6f27c366d578d97d8960c6 (patch) | |
tree | 2ef34b9ad8bb9a9220e05d60352558b15f513894 /mobile/android/android-components/components/tooling/lint/build.gradle | |
parent | Adding debian version 125.0.3-1. (diff) | |
download | firefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.tar.xz firefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.zip |
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mobile/android/android-components/components/tooling/lint/build.gradle')
-rw-r--r-- | mobile/android/android-components/components/tooling/lint/build.gradle | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/mobile/android/android-components/components/tooling/lint/build.gradle b/mobile/android/android-components/components/tooling/lint/build.gradle new file mode 100644 index 0000000000..adee887580 --- /dev/null +++ b/mobile/android/android-components/components/tooling/lint/build.gradle @@ -0,0 +1,42 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +import org.jetbrains.kotlin.gradle.tasks.KotlinCompile + +apply plugin: 'java-library' +apply plugin: 'kotlin' + +dependencies { + compileOnly ComponentsDependencies.tools_lintapi + compileOnly ComponentsDependencies.tools_lintchecks + + compileOnly ComponentsDependencies.kotlin_reflect + testImplementation ComponentsDependencies.kotlin_reflect + + testImplementation ComponentsDependencies.tools_lint + testImplementation ComponentsDependencies.tools_linttests + testImplementation ComponentsDependencies.testing_junit + testImplementation ComponentsDependencies.testing_mockito +} + +jar { + manifest { + attributes('Lint-Registry-v2': 'mozilla.components.tooling.lint.LintIssueRegistry') + } +} + +tasks.register("lint") { + doLast { + // Do nothing. We execute the same set of tasks for all our modules in parallel on taskcluster. + // This project doesn't have a lint task. To avoid special casing our automation I just added + // an empty lint task here. + } +} + +tasks.register("assembleAndroidTest") { + doLast { + // Do nothing. Like the `lint` task above this is just a dummy task so that this module + // behaves like our others and we do not need to special case it in automation. + } +} |