diff options
Diffstat (limited to 'Android.bp')
| -rw-r--r-- | Android.bp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp index 731b9f617158..95cdea03c559 100644 --- a/Android.bp +++ b/Android.bp @@ -69,6 +69,7 @@ filegroup { // Java/AIDL sources under frameworks/base ":framework-annotations", ":framework-blobstore-sources", + ":framework-connectivity-nsd-sources", ":framework-core-sources", ":framework-drm-sources", ":framework-graphics-nonupdatable-sources", @@ -326,8 +327,12 @@ java_defaults { "error_prone_android_framework", ], required: [ + // TODO(b/120066492): remove default_television.xml when the build system + // propagates "required" properly. + "default_television.xml", "framework-platform-compat-config", - // TODO: remove gps_debug and protolog.conf.json when the build system propagates "required" properly. + // TODO(b/120066492): remove gps_debug and protolog.conf.json when the build + // system propagates "required" properly. "gps_debug.conf", "icu4j-platform-compat-config", "protolog.conf.json.gz", @@ -380,6 +385,9 @@ java_library { "//frameworks/base/packages/Tethering/tests/unit", "//packages/modules/Connectivity/Tethering/tests/unit", ], + lint: { + extra_check_modules: ["AndroidFrameworkLintChecker"], + }, errorprone: { javacflags: [ "-Xep:AndroidFrameworkBinderIdentity:ERROR", |