comparison mx/suite.py @ 21097:391f94d4d23f

Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Thu, 23 Apr 2015 14:48:52 +0200
parents 71e05c3a1e12
children 42653f9ff18b
comparison
equal deleted inserted replaced
21096:71e05c3a1e12 21097:391f94d4d23f
312 }, 312 },
313 313
314 "com.oracle.graal.hotspotvmconfig" : { 314 "com.oracle.graal.hotspotvmconfig" : {
315 "subDir" : "graal", 315 "subDir" : "graal",
316 "sourceDirs" : ["src"], 316 "sourceDirs" : ["src"],
317 "dependencies" : ["com.oracle.graal.compiler.common"], 317 "checkstyle" : "com.oracle.graal.graph",
318 "checkstyle" : "com.oracle.graal.graph",
319 "annotationProcessors" : ["com.oracle.graal.service.processor"],
320 "javaCompliance" : "1.8", 318 "javaCompliance" : "1.8",
321 "workingSets" : "Graal,HotSpot", 319 "workingSets" : "Graal,HotSpot",
320 },
321
322 "com.oracle.graal.hotspotvmconfig.processor" : {
323 "subDir" : "graal",
324 "sourceDirs" : ["src"],
325 "dependencies" : ["com.oracle.graal.hotspotvmconfig", "com.oracle.graal.compiler.common"],
326 "checkstyle" : "com.oracle.graal.graph",
327 "javaCompliance" : "1.8",
328 "workingSets" : "Graal,HotSpot,Codegen",
322 }, 329 },
323 330
324 "com.oracle.graal.hotspot" : { 331 "com.oracle.graal.hotspot" : {
325 "subDir" : "graal", 332 "subDir" : "graal",
326 "sourceDirs" : ["src"], 333 "sourceDirs" : ["src"],
332 ], 339 ],
333 "checkstyle" : "com.oracle.graal.graph", 340 "checkstyle" : "com.oracle.graal.graph",
334 "annotationProcessors" : [ 341 "annotationProcessors" : [
335 "com.oracle.graal.replacements.verifier", 342 "com.oracle.graal.replacements.verifier",
336 "com.oracle.graal.service.processor", 343 "com.oracle.graal.service.processor",
344 "com.oracle.graal.hotspotvmconfig.processor",
337 ], 345 ],
338 "javaCompliance" : "1.8", 346 "javaCompliance" : "1.8",
339 "workingSets" : "Graal,HotSpot", 347 "workingSets" : "Graal,HotSpot",
340 }, 348 },
341 349
391 "dependencies" : [ 399 "dependencies" : [
392 "com.oracle.graal.compiler.sparc", 400 "com.oracle.graal.compiler.sparc",
393 "com.oracle.graal.replacements.sparc", 401 "com.oracle.graal.replacements.sparc",
394 ], 402 ],
395 "checkstyle" : "com.oracle.graal.graph", 403 "checkstyle" : "com.oracle.graal.graph",
396 "annotationProcessors" : ["com.oracle.graal.service.processor"], 404 "annotationProcessors" : ["com.oracle.graal.service.processor", "com.oracle.graal.compiler.match.processor"],
397 "javaCompliance" : "1.8", 405 "javaCompliance" : "1.8",
398 "workingSets" : "Graal,HotSpot,SPARC", 406 "workingSets" : "Graal,HotSpot,SPARC",
399 }, 407 },
400 408
401 "com.oracle.graal.hotspot.server" : { 409 "com.oracle.graal.hotspot.server" : {
741 "javaCompliance" : "1.8", 749 "javaCompliance" : "1.8",
742 "annotationProcessors" : ["com.oracle.graal.service.processor"], 750 "annotationProcessors" : ["com.oracle.graal.service.processor"],
743 "workingSets" : "Graal", 751 "workingSets" : "Graal",
744 }, 752 },
745 753
754 "com.oracle.graal.compiler.match.processor" : {
755 "subDir" : "graal",
756 "sourceDirs" : ["src"],
757 "dependencies" : [
758 "com.oracle.graal.compiler",
759 ],
760 "checkstyle" : "com.oracle.graal.graph",
761 "javaCompliance" : "1.8",
762 "workingSets" : "Graal,Codegen",
763 },
764
746 "com.oracle.graal.compiler.amd64" : { 765 "com.oracle.graal.compiler.amd64" : {
747 "subDir" : "graal", 766 "subDir" : "graal",
748 "sourceDirs" : ["src"], 767 "sourceDirs" : ["src"],
749 "dependencies" : [ 768 "dependencies" : [
750 "com.oracle.graal.compiler", 769 "com.oracle.graal.compiler",
751 "com.oracle.graal.lir.amd64", 770 "com.oracle.graal.lir.amd64",
752 ], 771 ],
753 "checkstyle" : "com.oracle.graal.graph", 772 "checkstyle" : "com.oracle.graal.graph",
773 "annotationProcessors" : ["com.oracle.graal.compiler.match.processor"],
754 "javaCompliance" : "1.8", 774 "javaCompliance" : "1.8",
755 "workingSets" : "Graal,AMD64", 775 "workingSets" : "Graal,AMD64",
756 }, 776 },
757 777
758 "com.oracle.graal.compiler.amd64.test" : { 778 "com.oracle.graal.compiler.amd64.test" : {