###prop
setPreferences=true
indentendOnly=true
###src
includeTargets << grailsScript("_GrailsBootstrap")

target("default": "Runs a set of pixels tests on the CSS Engine and GE")
		{
			depends("configureProxy", "packageApp", "classpath", "bootstrap")
	
setupInfrastructure()
	setupDecorations()
		generateCSSFile(decoration)
			generateImage()
	compareResults()
			}
###exp
includeTargets << grailsScript("_GrailsBootstrap")

target("default": "Runs a set of pixels tests on the CSS Engine and GE")
{
	depends("configureProxy", "packageApp", "classpath", "bootstrap")

	setupInfrastructure()
	setupDecorations()
	generateCSSFile(decoration)
	generateImage()
	compareResults()
}
###end