diff options
author | 2022-05-06 09:38:02 +0000 | |
---|---|---|
committer | 2022-05-06 10:17:29 +0000 | |
commit | c6ba182f3c6dc8ba58675dc05262d2c8273c47a4 (patch) | |
tree | f10a86e6ba2ca72f2d5a7983ed7b54d72084442b /sdk/sdk_test.go | |
parent | beccdcdff207de34e10d17bb8928ad5d1c512bf3 (diff) |
For each sdk built generate a JSON file describing its contents
Some build scripts need to know information about the contents of an
sdk, such as what APIs it provides (via java_sdk_library). Rather than
duplicate that information in the scripts or attempt to access that
information (where available) by looking at the contents of the
snapshot this change generates a JSON file that sits alongside the
snapshot itself.
The info file can be generated without generating the snapshot zip file
but whenever a snapshot zip file is generated the info is generated
too. The info file sits alongside the zip file in out/mainline-sdks.
Bug: 204763318
Test: m art-module-sdk
m dist
Change-Id: I289530bb21693dc6443826c24c17c9b5d85d2d8b
Diffstat (limited to 'sdk/sdk_test.go')
-rw-r--r-- | sdk/sdk_test.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sdk/sdk_test.go b/sdk/sdk_test.go index 40de15027..ccbeb8d9a 100644 --- a/sdk/sdk_test.go +++ b/sdk/sdk_test.go @@ -263,7 +263,10 @@ func TestSdkInstall(t *testing.T) { result := testSdkWithFs(t, sdk, nil) CheckSnapshot(t, result, "mysdk", "", - checkAllOtherCopyRules(`.intermediates/mysdk/common_os/mysdk-current.zip -> mysdk-current.zip`)) + checkAllOtherCopyRules(` +.intermediates/mysdk/common_os/mysdk-current.info -> mysdk-current.info +.intermediates/mysdk/common_os/mysdk-current.zip -> mysdk-current.zip +`)) } type EmbeddedPropertiesStruct struct { |