Java Code Examples for org.gradle.api.internal.project.ProjectInternal#getFileResolver()

The following examples show how to use org.gradle.api.internal.project.ProjectInternal#getFileResolver() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DefaultObjectiveCSourceSet.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@Inject
public DefaultObjectiveCSourceSet(String name, FunctionalSourceSet parent, ProjectInternal project) {
    super(name, parent, project, "Objective-C source", new DefaultSourceDirectorySet("source", project.getFileResolver()));
}
 
Example 2
Source File: DefaultWindowsResourceSet.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public DefaultWindowsResourceSet(String name, FunctionalSourceSet parent, ProjectInternal project) {
   super(name, parent, project, "windows resources", new DefaultSourceDirectorySet("source", project.getFileResolver()));
}
 
Example 3
Source File: DefaultCppSourceSet.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public DefaultCppSourceSet(String name, FunctionalSourceSet parent, ProjectInternal project) {
    super(name, parent, project, "C++ source", new DefaultSourceDirectorySet("source", project.getFileResolver()));
}
 
Example 4
Source File: DefaultCSourceSet.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@Inject
public DefaultCSourceSet(String name, FunctionalSourceSet parent, ProjectInternal project) {
    super(name, parent, project, "C source", new DefaultSourceDirectorySet("source", project.getFileResolver()));
}
 
Example 5
Source File: AbstractHeaderExportingSourceSet.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public AbstractHeaderExportingSourceSet(String name, FunctionalSourceSet parent, ProjectInternal project, String typeName, SourceDirectorySet source) {
    super(name, parent, typeName, source);
    this.exportedHeaders = new DefaultSourceDirectorySet("exported headers", project.getFileResolver());
    this.implicitHeaders = new DefaultSourceDirectorySet("implicit headers", project.getFileResolver());
}
 
Example 6
Source File: DefaultAssemblerSourceSet.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public DefaultAssemblerSourceSet(String name, FunctionalSourceSet parent, ProjectInternal project) {
    super(name, parent, "assembler source", new DefaultSourceDirectorySet("source", project.getFileResolver()));
}
 
Example 7
Source File: DefaultObjectiveCppSourceSet.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@Inject
public DefaultObjectiveCppSourceSet(String name, FunctionalSourceSet parent, ProjectInternal project) {
    super(name, parent, project, "Objective-C++ source", new DefaultSourceDirectorySet("source", project.getFileResolver()));
}
 
Example 8
Source File: DefaultObjectiveCSourceSet.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@Inject
public DefaultObjectiveCSourceSet(String name, FunctionalSourceSet parent, ProjectInternal project) {
    super(name, parent, project, "Objective-C source", new DefaultSourceDirectorySet("source", project.getFileResolver()));
}
 
Example 9
Source File: DefaultWindowsResourceSet.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public DefaultWindowsResourceSet(String name, FunctionalSourceSet parent, ProjectInternal project) {
   super(name, parent, project, "windows resources", new DefaultSourceDirectorySet("source", project.getFileResolver()));
}
 
Example 10
Source File: DefaultCppSourceSet.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public DefaultCppSourceSet(String name, FunctionalSourceSet parent, ProjectInternal project) {
    super(name, parent, project, "C++ source", new DefaultSourceDirectorySet("source", project.getFileResolver()));
}
 
Example 11
Source File: DefaultCSourceSet.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@Inject
public DefaultCSourceSet(String name, FunctionalSourceSet parent, ProjectInternal project) {
    super(name, parent, project, "C source", new DefaultSourceDirectorySet("source", project.getFileResolver()));
}
 
Example 12
Source File: AbstractHeaderExportingSourceSet.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public AbstractHeaderExportingSourceSet(String name, FunctionalSourceSet parent, ProjectInternal project, String typeName, SourceDirectorySet source) {
    super(name, parent, typeName, source);
    this.exportedHeaders = new DefaultSourceDirectorySet("exported headers", project.getFileResolver());
    this.implicitHeaders = new DefaultSourceDirectorySet("implicit headers", project.getFileResolver());
}
 
Example 13
Source File: DefaultAssemblerSourceSet.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public DefaultAssemblerSourceSet(String name, FunctionalSourceSet parent, ProjectInternal project) {
    super(name, parent, "assembler source", new DefaultSourceDirectorySet("source", project.getFileResolver()));
}
 
Example 14
Source File: DefaultObjectiveCppSourceSet.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@Inject
public DefaultObjectiveCppSourceSet(String name, FunctionalSourceSet parent, ProjectInternal project) {
    super(name, parent, project, "Objective-C++ source", new DefaultSourceDirectorySet("source", project.getFileResolver()));
}