Merge "Add Rust support to Soong." am: c6de2d9482 am: eb18951d4d am: b0af5e354c am: 8feb87c335

am: fcf07852ac

Change-Id: I4a24c649c973f2d3cfa88cf7899ab98de116864c
This commit is contained in:
Ivan Lozano
2019-08-28 19:16:42 -07:00
committed by android-build-merger
19 changed files with 2371 additions and 0 deletions

View File

@@ -392,6 +392,14 @@ func IsTestPerSrcDepTag(depTag blueprint.DependencyTag) bool {
return ok && ccDepTag == testPerSrcDepTag
}
func SharedDepTag() dependencyTag {
return sharedDepTag
}
func StaticDepTag() dependencyTag {
return staticDepTag
}
// Module contains the properties and members used by all C/C++ module types, and implements
// the blueprint.Module interface. It delegates to compiler, linker, and installer interfaces
// to construct the output file. Behavior can be customized with a Customizer interface