comparison mx/suite.py @ 20835:a2cd0e7072e2

added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
author Doug Simon <doug.simon@oracle.com>
date Tue, 07 Apr 2015 17:32:26 +0200
parents c5ae0424f822
children 3081a57f95fd
comparison
equal deleted inserted replaced
20834:e807c6f675de 20835:a2cd0e7072e2
387 }, 387 },
388 388
389 "com.oracle.graal.hotspot.sparc" : { 389 "com.oracle.graal.hotspot.sparc" : {
390 "subDir" : "graal", 390 "subDir" : "graal",
391 "sourceDirs" : ["src"], 391 "sourceDirs" : ["src"],
392 "dependencies" : ["com.oracle.graal.compiler.sparc"], 392 "dependencies" : [
393 "com.oracle.graal.compiler.sparc",
394 "com.oracle.graal.replacements.sparc",
395 ],
393 "checkstyle" : "com.oracle.graal.graph", 396 "checkstyle" : "com.oracle.graal.graph",
394 "annotationProcessors" : ["com.oracle.graal.service.processor"], 397 "annotationProcessors" : ["com.oracle.graal.service.processor"],
395 "javaCompliance" : "1.8", 398 "javaCompliance" : "1.8",
396 "workingSets" : "Graal,HotSpot,SPARC", 399 "workingSets" : "Graal,HotSpot,SPARC",
397 }, 400 },
600 "javaCompliance" : "1.8", 603 "javaCompliance" : "1.8",
601 "annotationProcessors" : ["com.oracle.graal.service.processor"], 604 "annotationProcessors" : ["com.oracle.graal.service.processor"],
602 "workingSets" : "Graal,Replacements,AMD64", 605 "workingSets" : "Graal,Replacements,AMD64",
603 }, 606 },
604 607
608 "com.oracle.graal.replacements.sparc" : {
609 "subDir" : "graal",
610 "sourceDirs" : ["src"],
611 "dependencies" : [
612 "com.oracle.graal.replacements",
613 "com.oracle.graal.sparc",
614 ],
615 "checkstyle" : "com.oracle.graal.graph",
616 "javaCompliance" : "1.8",
617 "workingSets" : "Graal,Replacements,SPARC",
618 },
619
605 "com.oracle.graal.replacements.test" : { 620 "com.oracle.graal.replacements.test" : {
606 "subDir" : "graal", 621 "subDir" : "graal",
607 "sourceDirs" : ["src"], 622 "sourceDirs" : ["src"],
608 "dependencies" : [ 623 "dependencies" : [
609 "com.oracle.graal.compiler.test", 624 "com.oracle.graal.compiler.test",