Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0dc5d214 authored by Paul Duffin's avatar Paul Duffin Committed by android-build-merger
Browse files

Sort sdkProperties by package and then name

am: fa02872b

Change-Id: Ib37b507474f8b3a0a32dcf1df9eb3388d65e585f
parents 500e305f fa02872b
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -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