Support "none" for stl when using ndk am: 4a97cb4 am: 4bd2663

am: 9a6f172

* commit '9a6f1723aebd6428e3f2a17d771699ccaf73bf15':
  Support "none" for stl when using ndk

Change-Id: Ica2e910db6c32c394b361050487c12e0c7d46046
This commit is contained in:
Colin Cross
2016-04-25 21:38:26 +00:00
committed by android-build-merger

View File

@@ -46,6 +46,8 @@ func (stl *stl) begin(ctx BaseModuleContext) {
"stlport_shared", "stlport_static",
"gnustl_static":
return "ndk_lib" + stl.Properties.Stl
case "none":
return ""
default:
ctx.ModuleErrorf("stl: %q is not a supported STL with sdk_version set", stl.Properties.Stl)
return ""