blob: 998ce7508cf67a8b5753afa317bc28e16157ce71 [file] [log] [blame]
/*
* Copyright (C) 2012 The Android Open Source Project
*
* 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.android.build.gradle.api;
import com.android.annotations.NonNull;
import groovy.lang.Closure;
/**
* An AndroidSourceSet represents a logical group of Java, aidl and RenderScript sources
* as well as Android and non-Android (Java-style) resources.
*/
public interface AndroidSourceSet {
/**
* Returns the name of this source set.
*
* @return The name. Never returns null.
*/
@NonNull
String getName();
/**
* Returns the Java resources which are to be copied into the javaResources output directory.
*
* @return the java resources. Never returns null.
*/
@NonNull
AndroidSourceDirectorySet getResources();
/**
* Configures the Java resources for this set.
*
* <p>The given closure is used to configure the {@link AndroidSourceDirectorySet} which
* contains the java resources.
*
* @param configureClosure The closure to use to configure the javaResources.
* @return this
*/
@NonNull
AndroidSourceSet resources(Closure configureClosure);
/**
* Returns the Java source which is to be compiled by the Java compiler into the class output
* directory.
*
* @return the Java source. Never returns null.
*/
@NonNull
AndroidSourceDirectorySet getJava();
/**
* Configures the Java source for this set.
*
* <p>The given closure is used to configure the {@link AndroidSourceDirectorySet} which
* contains the Java source.
*
* @param configureClosure The closure to use to configure the Java source.
* @return this
*/
@NonNull
AndroidSourceSet java(Closure configureClosure);
/**
* Returns the name of the compile configuration for this source set.
*
* @deprecated use {@link #getImplementationConfigurationName()}
*/
@NonNull
@Deprecated
String getCompileConfigurationName();
/**
* Returns the name of the runtime configuration for this source set.
*
* @deprecated use {@link #getRuntimeOnlyConfigurationName()}
*/
@NonNull
@Deprecated
String getPackageConfigurationName();
/**
* Returns the name of the compiled-only configuration for this source set.
*
* @deprecated use {@link #getCompileOnlyConfigurationName()}
*/
@NonNull
@Deprecated
String getProvidedConfigurationName();
/** Returns the name of the api configuration for this source set. */
@NonNull
String getApiConfigurationName();
/**
* Returns the name of the compileOnly configuration for this source set.
*/
@NonNull
String getCompileOnlyConfigurationName();
/**
* Returns the name of the implemenation configuration for this source set.
*/
@NonNull
String getImplementationConfigurationName();
/**
* Returns the name of the implemenation configuration for this source set.
*/
@NonNull
String getRuntimeOnlyConfigurationName();
/**
* Returns the name of the wearApp configuration for this source set.
*/
@NonNull
String getWearAppConfigurationName();
/**
* Returns the name of the annotation processing tool classpath for this source set.
*/
@NonNull
String getAnnotationProcessorConfigurationName();
/**
* The Android Manifest file for this source set.
*
* @return the manifest. Never returns null.
*/
@NonNull
AndroidSourceFile getManifest();
/**
* Configures the location of the Android Manifest for this set.
*
* <p>The given closure is used to configure the {@link AndroidSourceFile} which contains the
* manifest.
*
* @param configureClosure The closure to use to configure the Android Manifest.
* @return this
*/
@NonNull
AndroidSourceSet manifest(Closure configureClosure);
/**
* The Android Resources directory for this source set.
*
* @return the resources. Never returns null.
*/
@NonNull
AndroidSourceDirectorySet getRes();
/**
* Configures the location of the Android Resources for this set.
*
* <p>The given closure is used to configure the {@link AndroidSourceDirectorySet}
* which contains the resources.
*
* @param configureClosure The closure to use to configure the Resources.
* @return this
*/
@NonNull
AndroidSourceSet res(Closure configureClosure);
/**
* The Android Assets directory for this source set.
*
* @return the assets. Never returns null.
*/
@NonNull
AndroidSourceDirectorySet getAssets();
/**
* Configures the location of the Android Assets for this set.
*
* <p>The given closure is used to configure the {@link AndroidSourceDirectorySet}
* which contains the assets.
*
* @param configureClosure The closure to use to configure the Assets.
* @return this
*/
@NonNull
AndroidSourceSet assets(Closure configureClosure);
/**
* The Android AIDL source directory for this source set.
*
* @return the source. Never returns null.
*/
@NonNull
AndroidSourceDirectorySet getAidl();
/**
* Configures the location of the Android AIDL source for this set.
*
* <p>The given closure is used to configure the {@link AndroidSourceDirectorySet}
* which contains the AIDL source.
*
* @param configureClosure The closure to use to configure the AIDL source.
* @return this
*/
@NonNull
AndroidSourceSet aidl(Closure configureClosure);
/**
* The Android RenderScript source directory for this source set.
*
* @return the source. Never returns null.
*/
@NonNull
AndroidSourceDirectorySet getRenderscript();
/**
* Configures the location of the Android RenderScript source for this set.
*
* <p>The given closure is used to configure the {@link AndroidSourceDirectorySet}
* which contains the Renderscript source.
*
* @param configureClosure The closure to use to configure the Renderscript source.
* @return this
*/
@NonNull
AndroidSourceSet renderscript(Closure configureClosure);
/**
* The Android JNI source directory for this source set.
*
* @return the source. Never returns null.
*/
@NonNull
AndroidSourceDirectorySet getJni();
/**
* Configures the location of the Android JNI source for this set.
*
* <p>The given closure is used to configure the {@link AndroidSourceDirectorySet}
* which contains the JNI source.
*
* @param configureClosure The closure to use to configure the JNI source.
* @return this
*/
@NonNull
AndroidSourceSet jni(Closure configureClosure);
/**
* The Android JNI libs directory for this source set.
*
* @return the libs. Never returns null.
*/
@NonNull
AndroidSourceDirectorySet getJniLibs();
/**
* Configures the location of the Android JNI libs for this set.
*
* <p>The given closure is used to configure the {@link AndroidSourceDirectorySet}
* which contains the JNI libs.
*
* @param configureClosure The closure to use to configure the JNI libs.
* @return this
*/
@NonNull
AndroidSourceSet jniLibs(Closure configureClosure);
/**
* The Android shaders directory for this source set.
*
* @return the shaders. Never returns null.
*/
@NonNull
AndroidSourceDirectorySet getShaders();
/**
* Configures the location of the Android shaders for this set.
*
* <p>The given closure is used to configure the {@link AndroidSourceDirectorySet}
* which contains the shaders.
*
* @param configureClosure The closure to use to configure the shaders.
* @return this
*/
@NonNull
AndroidSourceSet shaders(Closure configureClosure);
/**
* Sets the root of the source sets to a given path.
*
* All entries of the source set are located under this root directory.
*
* @param path the root directory.
* @return this
*/
@NonNull
AndroidSourceSet setRoot(String path);
}