diff options
author | 2019-12-12 11:31:59 +0000 | |
---|---|---|
committer | 2019-12-12 11:31:59 +0000 | |
commit | fa02872b268d4b6883ae658d14699c3a8692662c (patch) | |
tree | b67066c2114e5f97711eab3614700b14c1433ef6 /sdk/sdk.go | |
parent | aafc04ea5c132a45127012fdbb6e64bc5fc3841b (diff) |
Sort sdkProperties by package and then name
Bug: 143678475
Test: m nothing
Change-Id: Ib610b799e7d86b413f4321239535a1caf4775ed9
Diffstat (limited to 'sdk/sdk.go')
-rw-r--r-- | sdk/sdk.go | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sdk/sdk.go b/sdk/sdk.go index c25186a82..8c5c8d8f6 100644 --- a/sdk/sdk.go +++ b/sdk/sdk.go @@ -61,15 +61,22 @@ type sdk struct { } type sdkProperties struct { + // For module types from the cc package + + // The list of native libraries in this SDK + Native_shared_libs []string + + // For module types from the java package + // The list of java header libraries in this SDK // // This should be used for java libraries that are provided separately at runtime, // e.g. through an APEX. Java_header_libs []string + // The list of java implementation libraries in this SDK Java_libs []string - // The list of native libraries in this SDK - Native_shared_libs []string + // The list of stub sources in this SDK Stubs_sources []string |