/* * Copyright 2015-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.python; import com.facebook.buck.cxx.CxxPlatform; import com.facebook.buck.cxx.CxxPlatformUtils; import com.facebook.buck.model.BuildTarget; import com.facebook.buck.model.FlavorDomain; import com.facebook.buck.rules.AbstractNodeBuilder; import com.facebook.buck.rules.coercer.PatternMatchedCollection; import com.facebook.buck.rules.coercer.SourceList; import com.facebook.buck.rules.coercer.VersionMatchedCollection; import com.google.common.collect.ImmutableSortedSet; import java.util.Optional; public class PythonLibraryBuilder extends AbstractNodeBuilder< PythonLibraryDescriptionArg.Builder, PythonLibraryDescriptionArg, PythonLibraryDescription, PythonLibrary> { PythonLibraryBuilder( BuildTarget target, FlavorDomain<PythonPlatform> pythonPlatforms, FlavorDomain<CxxPlatform> cxxPlatforms) { super(new PythonLibraryDescription(pythonPlatforms, cxxPlatforms), target); } public PythonLibraryBuilder(BuildTarget target) { this(target, PythonTestUtils.PYTHON_PLATFORMS, CxxPlatformUtils.DEFAULT_PLATFORMS); } public static PythonLibraryBuilder createBuilder(BuildTarget target) { return new PythonLibraryBuilder(target); } public PythonLibraryBuilder setSrcs(SourceList srcs) { getArgForPopulating().setSrcs(srcs); return this; } public PythonLibraryBuilder setPlatformSrcs(PatternMatchedCollection<SourceList> platformSrcs) { getArgForPopulating().setPlatformSrcs(platformSrcs); return this; } public PythonLibraryBuilder setPlatformResources( PatternMatchedCollection<SourceList> platformResources) { getArgForPopulating().setPlatformResources(platformResources); return this; } public PythonLibraryBuilder setBaseModule(String baseModule) { getArgForPopulating().setBaseModule(Optional.of(baseModule)); return this; } public PythonLibraryBuilder setDeps(ImmutableSortedSet<BuildTarget> deps) { getArgForPopulating().setDeps(deps); return this; } public PythonLibraryBuilder setPlatformDeps( PatternMatchedCollection<ImmutableSortedSet<BuildTarget>> deps) { getArgForPopulating().setPlatformDeps(deps); return this; } public PythonLibraryBuilder setVersionedSrcs(VersionMatchedCollection<SourceList> versionedSrcs) { getArgForPopulating().setVersionedSrcs(Optional.of(versionedSrcs)); return this; } public PythonLibraryBuilder setVersionedResources( VersionMatchedCollection<SourceList> versionedResources) { getArgForPopulating().setVersionedResources(Optional.of(versionedResources)); return this; } }