public class XcodePostbuildScriptDescription extends Object implements DescriptionWithTargetGraph<XcodeScriptDescriptionArg>
Example rule:
xcode_postbuild_script( name = 'pngcrush', cmd = '../Tools/pngcrush.sh', )
This rule is a hack and in the long-term should be replaced with a rule which operates similarly to apk_genrule, or should be removed entirely if possible. Those rules do nothing when building with Buck.
Constructor and Description |
---|
XcodePostbuildScriptDescription() |
Modifier and Type | Method and Description |
---|---|
NoopBuildRuleWithDeclaredAndExtraDeps |
createBuildRule(BuildRuleCreationContextWithTargetGraph context,
BuildTarget buildTarget,
BuildRuleParams params,
XcodeScriptDescriptionArg args)
Create a
BuildRule for the given BuildRuleParams . |
Class<XcodeScriptDescriptionArg> |
getConstructorArgType()
The type of the constructor argument that is used by this description to create a rule
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
producesCacheableSubgraph
getConfigurationDeps
public Class<XcodeScriptDescriptionArg> getConstructorArgType()
BaseDescription
getConstructorArgType
in interface BaseDescription<XcodeScriptDescriptionArg>
public NoopBuildRuleWithDeclaredAndExtraDeps createBuildRule(BuildRuleCreationContextWithTargetGraph context, BuildTarget buildTarget, BuildRuleParams params, XcodeScriptDescriptionArg args)
DescriptionWithTargetGraph
BuildRule
for the given BuildRuleParams
. Note that the BuildTarget
referred to in the params
contains the Flavor
to create.createBuildRule
in interface DescriptionWithTargetGraph<XcodeScriptDescriptionArg>
args
- A constructor argument, of type as returned by BaseDescription.getConstructorArgType()
.BuildRule
that describes the default flavour of the rule being described.