Interface UnresolvedNdkCxxPlatform
-
- All Known Implementing Classes:
ProviderBackedUnresolvedNdkCxxPlatform
,StaticUnresolvedNdkCxxPlatform
public interface UnresolvedNdkCxxPlatform
Used by descriptions to properly handleNdkCxxPlatform
. During parsing/configuration only information about parse-time deps is available. During action graph creation, this can be resolved to the finalNdkCxxPlatform
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UnresolvedCxxPlatform
getCxxPlatform()
Returns the @{link UnresolvedCxxPlatform} corresponding to the resolvedNdkCxxPlatform
'sCxxPlatform
.Iterable<BuildTarget>
getParseTimeDeps(TargetConfiguration targetConfiguration)
Returns the parse time deps of this platform.NdkCxxPlatform
resolve(BuildRuleResolver ruleResolver)
Returns the resolved @{link NdkCxxPlatform}.
-
-
-
Method Detail
-
getParseTimeDeps
Iterable<BuildTarget> getParseTimeDeps(TargetConfiguration targetConfiguration)
Returns the parse time deps of this platform.
-
resolve
NdkCxxPlatform resolve(BuildRuleResolver ruleResolver)
Returns the resolved @{link NdkCxxPlatform}.
-
getCxxPlatform
UnresolvedCxxPlatform getCxxPlatform()
Returns the @{link UnresolvedCxxPlatform} corresponding to the resolvedNdkCxxPlatform
'sCxxPlatform
.
-
-