blob: e7ad1b0beb2541e4e3fbed80227145c9b6ac426c [file] [log] [blame]
/*
* Copyright (C) 2015 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.builder.model;
import com.android.annotations.NonNull;
import java.io.File;
import java.util.Collection;
import java.util.Map;
/**
* Entry point for the model of the Android native support.
*/
public interface NativeAndroidProject {
/**
* Returns the model version. This is a string in the format X.Y.Z
*/
@NonNull
String getModelVersion();
/**
* Returns the model api version.
* <p/>
* This is different from {@link #getModelVersion()} in a way that new model
* version might increment model version but keep existing api. That means that
* code which was built against particular 'api version' might be safely re-used for all
* new model versions as long as they don't change the api.
* <p/>
* Every new model version is assumed to return an 'api version' value which
* is equal or greater than the value used by the previous model version.
*/
int getApiVersion();
/**
* Returns the name of the module.
*/
@NonNull
String getName();
/**
* Returns a collection of files that affects the build.
*/
@NonNull
Collection<File> getBuildFiles();
/**
* Returns a collection of native artifacts.
*/
@NonNull
Collection<NativeArtifact> getArtifacts();
/**
* Returns a collection of toolchains.
*/
@NonNull
Collection<NativeToolchain> getToolChains();
/**
* Returns a collection of all compile settings.
*/
@NonNull
Collection<NativeSettings> getSettings();
/**
* Return a map of file extension to each file type.
*
* The key is the file extension, the value is either "c" or "c++".
*/
@NonNull
Map<String, String> getFileExtensions();
}