Support "none" for stl when using ndk

am: 4a97cb4

* commit '4a97cb432823899dfc70cd5a874409b353e08115':
  Support "none" for stl when using ndk

Change-Id: I99a2a94b8af85a632674db44b04c5ada272c934f
This commit is contained in:
Colin Cross
2016-04-25 21:26:16 +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 ""