Merge "Treat .cxx files as c++" am: 35bb770e0e am: 6598f20be5 am: d3c8c1ed26

am: 0635369d36

Change-Id: Ia95d5203642716812d6e13053c8a0598275ace65
This commit is contained in:
Colin Cross
2019-06-28 15:01:59 -07:00
committed by android-build-merger
2 changed files with 2 additions and 2 deletions

View File

@@ -416,7 +416,7 @@ func TransformSourceToObj(ctx android.ModuleContext, subdir string, srcFiles and
ccCmd = "clang"
moduleCflags = cflags
moduleToolingCflags = toolingCflags
case ".cpp", ".cc", ".mm":
case ".cpp", ".cc", ".cxx", ".mm":
ccCmd = "clang++"
moduleCflags = cppflags
moduleToolingCflags = toolingCppflags

View File

@@ -141,7 +141,7 @@ func getArguments(src android.Path, ctx android.SingletonContext, ccModule *Modu
isAsm = false
isCpp = false
clangPath = ccPath
case ".cpp", ".cc", ".mm":
case ".cpp", ".cc", ".cxx", ".mm":
isAsm = false
isCpp = true
clangPath = cxxPath