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

am: 4bd2663

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

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