Lines Matching defs:rules
59 * <li>Imports the build rules located in the resolved target so that the build actually does
67 /** current max version of the Ant rules that is supported */
70 // legacy main rules file.
72 // legacy test rules file - depends on android_rules.xml
75 // main rules file
77 // test rules file - depends on android_rules.xml
79 // library rules file.
263 // older names. This sets those properties to make sure the rules will work.
284 throw new BuildException(String.format("Rules directory '%s' is missing.",
298 // now check the rules file exists.
299 File rules = new File(rulesFolder, importedRulesFileName);
301 if (rules.isFile() == false) {
302 throw new BuildException(String.format("Build rules file '%s' is missing.",
303 rules));
308 String rulesLocation = rules.getAbsolutePath();
315 System.out.println("Importing rules file: " + rulesLocation);
318 setFile(rules.getAbsolutePath());