aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2022-03-04 22:42:06 -0800
committerColin Cross <ccross@android.com>2022-03-04 22:42:06 -0800
commita359f7ea22ed55545bb33de68c7b73b40576646b (patch)
tree6ebc68612c839c465cf2c18e3729e234a599e844
parent85e5c17a9a61aed9f989ebf0c17507cec66e4c39 (diff)
downloadauto-a359f7ea22ed55545bb33de68c7b73b40576646b.tar.gz
Update Android.bp for upstream merge
Test: m checkbuild Change-Id: I3580bd1fdc55ee04ff9700eef3c8bc03d4dd6601
-rwxr-xr-xandroid-annotation-stubs/gen_annotations.sh1
-rw-r--r--android-annotation-stubs/src/org/checkerframework/checker/nullness/qual/Nullable.java40
-rw-r--r--common/Android.bp1
3 files changed, 42 insertions, 0 deletions
diff --git a/android-annotation-stubs/gen_annotations.sh b/android-annotation-stubs/gen_annotations.sh
index 90c9fcfb..4766af97 100755
--- a/android-annotation-stubs/gen_annotations.sh
+++ b/android-annotation-stubs/gen_annotations.sh
@@ -6,6 +6,7 @@ declare -A IMPORT
ANNOTATIONS=(
net.ltgt.gradle.incap.IncrementalAnnotationProcessor
+ org.checkerframework.checker.nullness.qual.Nullable
)
PARAMETER["net.ltgt.gradle.incap.IncrementalAnnotationProcessor"]="IncrementalAnnotationProcessorType"
diff --git a/android-annotation-stubs/src/org/checkerframework/checker/nullness/qual/Nullable.java b/android-annotation-stubs/src/org/checkerframework/checker/nullness/qual/Nullable.java
new file mode 100644
index 00000000..276d64c1
--- /dev/null
+++ b/android-annotation-stubs/src/org/checkerframework/checker/nullness/qual/Nullable.java
@@ -0,0 +1,40 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.checkerframework.checker.nullness.qual;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+/* This is an annotation stub to avoid dependencies on annotations that aren't
+ * in the Android platform source tree. */
+
+@Target({
+ ElementType.ANNOTATION_TYPE,
+ ElementType.CONSTRUCTOR,
+ ElementType.FIELD,
+ ElementType.LOCAL_VARIABLE,
+ ElementType.METHOD,
+ ElementType.PACKAGE,
+ ElementType.PARAMETER,
+ ElementType.TYPE,
+ ElementType.TYPE_PARAMETER,
+ ElementType.TYPE_USE
+})
+@Retention(RetentionPolicy.SOURCE)
+public @interface Nullable {}
diff --git a/common/Android.bp b/common/Android.bp
index 25f70998..19e2acdc 100644
--- a/common/Android.bp
+++ b/common/Android.bp
@@ -11,6 +11,7 @@ java_library_host {
name: "auto_common",
srcs: ["src/main/java/**/*.java"],
libs: [
+ "auto_android_annotation_stubs",
"guava",
"javapoet",
],