Sort sdkProperties by package and then name

Bug: 143678475
Test: m nothing
Change-Id: Ib610b799e7d86b413f4321239535a1caf4775ed9
This commit is contained in:
Paul Duffin
2019-12-12 11:31:59 +00:00
parent aafc04ea5c
commit fa02872b26

View File

@@ -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