
org.gradle.language.assembler.plugins.AssemblerLangPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2014 the original author or authors.
*
* 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 org.gradle.language.assembler.plugins;
import com.google.common.collect.Maps;
import org.gradle.api.Incubating;
import org.gradle.api.Plugin;
import org.gradle.api.Project;
import org.gradle.language.assembler.AssemblerSourceSet;
import org.gradle.language.assembler.plugins.internal.AssembleTaskConfig;
import org.gradle.language.base.internal.SourceTransformTaskConfig;
import org.gradle.language.base.internal.registry.LanguageTransformContainer;
import org.gradle.language.base.plugins.ComponentModelBasePlugin;
import org.gradle.language.nativeplatform.internal.NativeLanguageTransform;
import org.gradle.model.Mutate;
import org.gradle.model.RuleSource;
import org.gradle.nativeplatform.internal.DefaultTool;
import org.gradle.platform.base.ComponentType;
import org.gradle.platform.base.TypeBuilder;
import java.util.Map;
/**
* Adds core Assembler language support.
*/
@Incubating
public class AssemblerLangPlugin implements Plugin {
@Override
public void apply(Project project) {
project.getPluginManager().apply(ComponentModelBasePlugin.class);
}
@SuppressWarnings("UnusedDeclaration")
static class Rules extends RuleSource {
@ComponentType
void registerLanguage(TypeBuilder builder) {
}
@Mutate
void registerLanguageTransform(LanguageTransformContainer languages) {
languages.add(new Assembler());
}
}
private static class Assembler extends NativeLanguageTransform {
@Override
public Class getSourceSetType() {
return AssemblerSourceSet.class;
}
@Override
public String getLanguageName() {
return "asm";
}
@Override
public Map> getBinaryTools() {
Map> tools = Maps.newLinkedHashMap();
tools.put("assembler", DefaultTool.class);
return tools;
}
@Override
public SourceTransformTaskConfig getTransformTask() {
return new AssembleTaskConfig();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy