blob: 482f6a9fe9ddf2b2183c07475be67766d20c1d5c [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.cxx;
import com.facebook.buck.model.BuildTarget;
import com.facebook.buck.model.HasTests;
import com.facebook.buck.rules.Hint;
import com.facebook.buck.rules.SourcePath;
import com.facebook.buck.rules.coercer.Either;
import com.facebook.buck.model.Pair;
import com.facebook.buck.rules.coercer.SourceWithFlags;
import com.facebook.infer.annotation.SuppressFieldNotInitialized;
import com.google.common.base.Optional;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSortedSet;
import java.nio.file.Path;
@SuppressFieldNotInitialized
public class CxxConstructorArg implements HasTests {
public Optional<Either<ImmutableList<SourceWithFlags>, ImmutableMap<String, SourceWithFlags>>>
srcs;
public Optional<Either<ImmutableList<SourcePath>, ImmutableMap<String, SourcePath>>> headers;
public Optional<ImmutableList<SourcePath>> prefixHeaders;
public Optional<ImmutableList<String>> compilerFlags;
public Optional<ImmutableList<String>> preprocessorFlags;
public Optional<ImmutableList<String>> linkerFlags;
public Optional<ImmutableList<Pair<String, ImmutableList<String>>>> platformLinkerFlags;
public Optional<ImmutableMap<CxxSource.Type, ImmutableList<String>>> langPreprocessorFlags;
public Optional<ImmutableList<Path>> frameworkSearchPaths;
public Optional<ImmutableList<SourcePath>> lexSrcs;
public Optional<ImmutableList<SourcePath>> yaccSrcs;
public Optional<ImmutableSortedSet<BuildTarget>> deps;
public Optional<String> headerNamespace;
@Hint(isDep = false) public Optional<ImmutableSortedSet<BuildTarget>> tests;
@Override
public ImmutableSortedSet<BuildTarget> getTests() {
return tests.get();
}
}