diff options
author | 2024-07-23 21:34:24 +0000 | |
---|---|---|
committer | 2024-07-23 22:18:00 +0000 | |
commit | e20c56cdf024018574458af4586ab7416845b250 (patch) | |
tree | ca55636564a32ff99f7feb86fb5b57551db295ae /sdk/cc_sdk_test.go | |
parent | 9a2f01b76275200bef1f4ba6467e9be1b0abe8af (diff) |
Add C symbol file to module sdk snapshot
cc_prebuilt_library_shared does not currently support generating stubs
from API symbol_files, and therefore the symbol file was removed from
the module sdk snapshots in https://ag.corp.google.com/11394495
As part of b/275273834, the stubs will be generated from the API files
for cc_prebuilt_library_shared, so add the symbol file back to the
module sdk
Bug: 275273834
Test: m nothing --no-skip-soong-tests
Test: m art-module-sdk and verified the map.txt is copied to the zip
next to the Android.bp file
Change-Id: I9551e7b8a76ceb9db3ed0434d315b6839f5e3d54
Diffstat (limited to 'sdk/cc_sdk_test.go')
-rw-r--r-- | sdk/cc_sdk_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sdk/cc_sdk_test.go b/sdk/cc_sdk_test.go index 5d76930b4..25839b8a1 100644 --- a/sdk/cc_sdk_test.go +++ b/sdk/cc_sdk_test.go @@ -2205,6 +2205,7 @@ cc_prebuilt_library_shared { "3", "current", ], + symbol_file: "stubslib.map.txt", }, arch: { arm64: { @@ -2268,6 +2269,7 @@ cc_prebuilt_library_shared { "3", "current", ], + symbol_file: "stubslib.map.txt", }, target: { host: { |