Home | History | Annotate | Download | only in idegen

Lines Matching defs:module

36  * Module constructed from a make file.
40 * framework module includes sources from:
48 public class Module {
50 private static final Logger logger = Logger.getLogger(Module.class.getName());
54 private static final String IML_TEMPLATE_FILE_NAME = "module-template.iml";
78 // Module dependencies come from LOCAL_STATIC_JAVA_LIBRARIES or LOCAL_JAVA_LIBRARIES
80 // Implicit module dependencies come from src files that fall outside the module root directory.
82 // that is an implicit module dependency. It's not a module dependency from the build
83 // perspective but it needs to be a separate module in intellij so that the src files can be
91 public Module(File moduleDir) throws IOException {
95 public Module(File moduleDir, boolean parseMakeFileForSource) throws IOException {
136 logger.info("Done building module " + moduleRoot);
174 // Look for directories outside the current module directory.
260 Module module = moduleCache.getAndCacheByDir(new File(dependency));
261 moduleDependencies.append(" <orderEntry type=\"module\" module-name=\"")
262 .append(module.getName()).append("\" />\n");
290 Module child = moduleCache.getAndCacheByName(dependency);
301 // Don't include self. The current module may have been brought in by framework
308 Module child = moduleCache.getAndCacheByDir(dependency);
332 // Not sure how to handle android facet for multi-module since there could be more than
377 Module other = (Module) obj;