diff options
author | Neil Fuller <nfuller@google.com> | 2018-10-04 11:03:39 +0100 |
---|---|---|
committer | Neil Fuller <nfuller@google.com> | 2018-10-12 10:44:48 +0100 |
commit | a18bedbffad7a615e52aa3602f6541b56453db32 (patch) | |
tree | 4bc6547df8b65a45884dc216abe5d2d9aee5e7c2 | |
parent | 8f283df62152cdaea36a735b8b527dbee7f072cc (diff) |
Remove explicit dependencies on "core" libraries
The dependencies are unnecessary since bouncycastle
and conscrypt are included in the "standard libraries".
Test: build
Bug: 113148576
Change-Id: Ic059bd60a7e34550ff65d6226d65b70ee52c6bc8
-rw-r--r-- | service/Android.mk | 2 | ||||
-rw-r--r-- | tests/wifitests/Android.mk | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/service/Android.mk b/service/Android.mk index a77d25b90..aaa81afb9 100644 --- a/service/Android.mk +++ b/service/Android.mk @@ -57,8 +57,6 @@ LOCAL_SRC_FILES := $(call all-java-files-under, java) \ LOCAL_JAVA_LIBRARIES := \ android.hidl.manager-V1.0-java \ - bouncycastle \ - conscrypt \ error_prone_annotations \ jsr305 \ services diff --git a/tests/wifitests/Android.mk b/tests/wifitests/Android.mk index 2ea0fe532..cd9b354e4 100644 --- a/tests/wifitests/Android.mk +++ b/tests/wifitests/Android.mk @@ -64,9 +64,7 @@ LOCAL_JAVA_LIBRARIES := \ android.test.runner \ android.hidl.manager-V1.0-java \ android.test.base \ - android.test.mock \ - bouncycastle \ - conscrypt + android.test.mock # These must be explicitly included because they are not normally accessible # from apps. |