aboutsummaryrefslogtreecommitdiffstats
path: root/cc/androidmk.go
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2016-08-08 10:45:03 -0700
committerDan Albert <danalbert@google.com>2016-08-08 12:44:23 -0700
commit705c84b9eeca8eec96fd69ecf0a73c0a4cd6c12a (patch)
tree76494eabc2c3e7060e327c1488e86a30a00f9d2b /cc/androidmk.go
parent7fa7b2efd37786bc6bd14abbfa33bdeb1661beec (diff)
downloadbuild_soong-705c84b9eeca8eec96fd69ecf0a73c0a4cd6c12a.tar.gz
build_soong-705c84b9eeca8eec96fd69ecf0a73c0a4cd6c12a.tar.bz2
build_soong-705c84b9eeca8eec96fd69ecf0a73c0a4cd6c12a.zip
Fix ndk_library following decorator refactor.
https://android-review.googlesource.com/#/c/253603/ accidentally dropped the ndk_library properties and was using the base cc properties instead. Change-Id: Ia2dcd767f98871dbdbbd9d0ff6d2a73b9b4889ac
Diffstat (limited to 'cc/androidmk.go')
-rw-r--r--cc/androidmk.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cc/androidmk.go b/cc/androidmk.go
index 4986387e..c19aa17b 100644
--- a/cc/androidmk.go
+++ b/cc/androidmk.go
@@ -201,6 +201,7 @@ func (installer *baseInstaller) AndroidMk(ctx AndroidMkContext, ret *android.And
func (c *stubDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
ret.SubName = "." + strconv.Itoa(c.properties.ApiLevel)
+ ret.Class = "SHARED_LIBRARIES"
ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
path, file := filepath.Split(c.installPath)