blob: 8118a234af7534f0d761a1e2270b99d3d150f935 [file] [log] [blame]
/*
* Copyright 2014-present Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package com.facebook.buck.android;
import com.facebook.buck.model.BuildTarget;
import com.facebook.buck.rules.BuildRule;
import com.facebook.buck.rules.BuildRuleParams;
import com.facebook.buck.rules.FakeBuildRuleParamsBuilder;
import com.facebook.buck.rules.SourcePath;
import com.facebook.buck.rules.SourcePathResolver;
import com.google.common.collect.ImmutableSortedSet;
import java.nio.file.Path;
public class AndroidResourceRuleBuilder {
private AndroidResourceRuleBuilder() {
// Utility class
}
public static Builder newBuilder() {
return new Builder();
}
public static class Builder {
private SourcePathResolver resolver;
private BuildRuleParams buildRuleParams;
private ImmutableSortedSet<BuildRule> deps = ImmutableSortedSet.of();
private Path res;
private ImmutableSortedSet<Path> resSrcs = ImmutableSortedSet.of();
private String rDotJavaPackage;
private Path assets;
private ImmutableSortedSet<Path> assetsSrcs = ImmutableSortedSet.of();
private SourcePath manifest;
private boolean hasWhitelistedStrings = false;
public AndroidResource build() {
return new AndroidResource(
buildRuleParams,
resolver,
deps,
res,
resSrcs,
rDotJavaPackage,
assets,
assetsSrcs,
manifest,
hasWhitelistedStrings);
}
public Builder setBuildRuleParams(BuildRuleParams params) {
this.buildRuleParams = params;
return this;
}
public Builder setResolver(SourcePathResolver resolver) {
this.resolver = resolver;
return this;
}
public Builder setBuildTarget(BuildTarget buildTarget) {
buildRuleParams = new FakeBuildRuleParamsBuilder(buildTarget).build();
return this;
}
public Builder setDeps(ImmutableSortedSet<BuildRule> deps) {
this.deps = deps;
return this;
}
public Builder setRes(Path res) {
this.res = res;
return this;
}
public Builder setResSrcs(ImmutableSortedSet<Path> resSrcs) {
this.resSrcs = resSrcs;
return this;
}
public Builder setRDotJavaPackage(String rDotJavaPackage) {
this.rDotJavaPackage = rDotJavaPackage;
return this;
}
public Builder setAssets(Path assets) {
this.assets = assets;
return this;
}
public Builder setAssetsSrcs(ImmutableSortedSet<Path> assetsSrcs) {
this.assetsSrcs = assetsSrcs;
return this;
}
public Builder setManifest(SourcePath manifest) {
this.manifest = manifest;
return this;
}
public Builder setHasWhitelistedStrings(boolean hasWhitelistedStrings) {
this.hasWhitelistedStrings = hasWhitelistedStrings;
return this;
}
}
}