public class XcodePrebuildScriptDescription extends Object implements DescriptionWithTargetGraph<XcodeScriptDescriptionArg>, Flavored
Example rule:
xcode_prebuild_script( name = 'register_app', cmd = 'register_app.sh', )
This rule is a hack and in the long-term should be replaced with a genrule that works in both Buck and Xcode build. Those rules do nothing when building with Buck.
| Constructor and Description |
|---|
XcodePrebuildScriptDescription() |
| 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
|
boolean |
hasFlavors(com.google.common.collect.ImmutableSet<Flavor> flavors,
TargetConfiguration toolchainTargetConfiguration) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitproducesCacheableSubgraphgetConfigurationDepsflavorDomainspublic Class<XcodeScriptDescriptionArg> getConstructorArgType()
BaseDescriptiongetConstructorArgType in interface BaseDescription<XcodeScriptDescriptionArg>public NoopBuildRuleWithDeclaredAndExtraDeps createBuildRule(BuildRuleCreationContextWithTargetGraph context, BuildTarget buildTarget, BuildRuleParams params, XcodeScriptDescriptionArg args)
DescriptionWithTargetGraphBuildRule 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.public boolean hasFlavors(com.google.common.collect.ImmutableSet<Flavor> flavors, TargetConfiguration toolchainTargetConfiguration)
hasFlavors in interface Flavoredflavors - The set of Flavors to consider. All must match.BuildRule of the given Flavor
can be created.