// Copyright 2018 The Bazel Authors. All rights reserved. // // 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.google.devtools.build.lib.skylarkbuildapi.cpp; import com.google.common.collect.ImmutableList; import com.google.devtools.build.lib.collect.nestedset.NestedSet; import com.google.devtools.build.lib.skylarkbuildapi.FileApi; import com.google.devtools.build.lib.skylarkinterface.SkylarkCallable; import com.google.devtools.build.lib.skylarkinterface.SkylarkModule; import com.google.devtools.build.lib.skylarkinterface.SkylarkModuleCategory; /** * Object with information about C++ rules. Every C++-related target should provide this. */ @SkylarkModule( name = "CcSkylarkApiProvider", category = SkylarkModuleCategory.PROVIDER, doc = "Provides access to information about C++ rules. " + "Every C++-related target provides this struct, accessible as a cc field " + "on target." ) public interface CcSkylarkApiProviderApi { @SkylarkCallable( name = "transitive_headers", structField = true, doc = "Returns a depset of headers that have been declared in the " + " src or headers attribute" + "(possibly empty but never None).") public NestedSet getTransitiveHeaders(); @SkylarkCallable( name = "libs", structField = true, doc = "Returns the depset of libraries for either " + "FULLY STATIC mode (linkopts=[\"-static\"]) or " + "MOSTLY STATIC mode (linkstatic=1) " + "(possibly empty but never None)") public NestedSet getLibraries(); @SkylarkCallable( name = "link_flags", structField = true, doc = "Returns the list of flags given to the C++ linker command for either " + "FULLY STATIC mode (linkopts=[\"-static\"]) or " + "MOSTLY STATIC mode (linkstatic=1) " + "(possibly empty but never None)") public ImmutableList getLinkopts(); @SkylarkCallable( name = "defines", structField = true, doc = "Returns the list of defines used to compile this target " + "(possibly empty but never None).") public ImmutableList getDefines(); @SkylarkCallable( name = "system_include_directories", structField = true, doc = "Returns the list of system include directories used to compile this target " + "(possibly empty but never None).") public ImmutableList getSystemIncludeDirs(); @SkylarkCallable( name = "include_directories", structField = true, doc = "Returns the list of include directories used to compile this target " + "(possibly empty but never None).") public ImmutableList getIncludeDirs(); @SkylarkCallable( name = "quote_include_directories", structField = true, doc = "Returns the list of quote include directories used to compile this target " + "(possibly empty but never None).") public ImmutableList getQuoteIncludeDirs(); @SkylarkCallable( name = "compile_flags", structField = true, doc = "Returns the list of flags used to compile this target " + "(possibly empty but never None).") public ImmutableList getCcFlags(); }