diff options
author | Michael Plass <mplass@google.com> | 2019-08-22 17:09:35 -0700 |
---|---|---|
committer | Michael Plass <mplass@google.com> | 2019-08-23 17:14:06 +0000 |
commit | f05826a60e1cb07f6daad9bcfb5cd8bad3eaa9f1 (patch) | |
tree | af91a6bdbdd4a8f9b6f79ec1d65eb6fa6ddc3934 /service | |
parent | e266f070cf3159993e0858daaddaa4a73043c15e (diff) |
Fix coverage of FrameworksWifiTests
Add jacoco section to bp file for tests
Rename WifiStackBase target back to wifi-service for
the benefit of some out-of-tree scripts.
This gets the coverage working again, but getting the excludes working
as desired will take additional work.
Bug: 139869050
Test: atest FrameworksWifiTests # to check that this did not break
Test: ./frameworks/opt/net/wifi/tests/wifitests/coverage.sh /tmp/cov
Change-Id: I320db23becf3ea5870ee7bae6d5b2ba8da669fcf
Diffstat (limited to 'service')
-rw-r--r-- | service/Android.bp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/service/Android.bp b/service/Android.bp index f587c9c76..f54e406e9 100644 --- a/service/Android.bp +++ b/service/Android.bp @@ -74,7 +74,7 @@ cc_library_shared { // Build the wifi-service static library // ============================================================ java_library { - name: "WifiStackBase", + name: "wifi-service", installable: true, defaults: ["WifiStackCommon"], aidl: { @@ -126,12 +126,12 @@ java_defaults { name: "WifiStackAppCommon", defaults: ["WifiStackCommon"], static_libs: [ - "WifiStackBase", + "wifi-service", ], jni_libs: [ "libwifi-jni", ], - // Resources already included in WifiStackBase + // Resources already included in wifi-service resource_dirs: [], jarjar_rules: "jarjar-rules-shared.txt", optimize: { |