comparison mx.graal/suite.py @ 22319:42f424266138

moved ctw command to mx_graal.py and re-added graal.debug project declarations
author Doug Simon <doug.simon@oracle.com>
date Fri, 24 Jul 2015 11:09:11 +0200
parents 3ea10576bea7
children b1ed20090527
comparison
equal deleted inserted replaced
22318:3ea10576bea7 22319:42f424266138
4 4
5 "imports" : { 5 "imports" : {
6 "suites": [ 6 "suites": [
7 { 7 {
8 "name" : "jvmci", 8 "name" : "jvmci",
9 "version" : "9e49e61995d6408db1d2f2399f6c4a96e26b7c90", 9 "version" : "486822772780ac210c484d4ae2d457d1ef6c01fd",
10 "urls" : [ 10 "urls" : [
11 {"url" : "https://lafo.ssw.uni-linz.ac.at/hg/graal-jvmci-8", "kind" : "hg"}, 11 {"url" : "https://lafo.ssw.uni-linz.ac.at/hg/graal-jvmci-8", "kind" : "hg"},
12 {"url" : "http://lafo.ssw.uni-linz.ac.at/nexus/content/repositories/snapshots", "kind" : "binary"}, 12 {"url" : "http://lafo.ssw.uni-linz.ac.at/nexus/content/repositories/snapshots", "kind" : "binary"},
13 ] 13 ]
14 }, 14 },
89 "javaCompliance" : "1.7", 89 "javaCompliance" : "1.7",
90 }, 90 },
91 91
92 # ------------- Graal ------------- 92 # ------------- Graal -------------
93 93
94 "com.oracle.graal.debug" : {
95 "subDir" : "graal",
96 "sourceDirs" : ["src"],
97 "checkstyle" : "com.oracle.graal.graph",
98 "dependencies" : [
99 "jvmci:JVMCI_API",
100 ],
101 "annotationProcessors" : ["jvmci:JVMCI_OPTIONS_PROCESSOR"],
102 "javaCompliance" : "1.8",
103 "workingSets" : "JVMCI,Debug",
104 },
105
106 "com.oracle.graal.debug.test" : {
107 "subDir" : "graal",
108 "sourceDirs" : ["src"],
109 "dependencies" : [
110 "mx:JUNIT",
111 "com.oracle.graal.debug",
112 ],
113 "checkstyle" : "com.oracle.graal.graph",
114 "javaCompliance" : "1.8",
115 "workingSets" : "JVMCI,Debug,Test",
116 },
117
94 "com.oracle.graal.code" : { 118 "com.oracle.graal.code" : {
95 "subDir" : "graal", 119 "subDir" : "graal",
96 "sourceDirs" : ["src"], 120 "sourceDirs" : ["src"],
97 "dependencies" : [ 121 "dependencies" : [
98 "jvmci:JVMCI_SERVICE", 122 "jvmci:JVMCI_SERVICE",
266 "sourceDirs" : ["src"], 290 "sourceDirs" : ["src"],
267 "dependencies" : [ 291 "dependencies" : [
268 "com.oracle.graal.debug", 292 "com.oracle.graal.debug",
269 "com.oracle.graal.nodeinfo", 293 "com.oracle.graal.nodeinfo",
270 "com.oracle.graal.compiler.common", 294 "com.oracle.graal.compiler.common",
271 "com.oracle.graal.debug",
272 "com.oracle.graal.api.collections", 295 "com.oracle.graal.api.collections",
273 "com.oracle.graal.api.runtime", 296 "com.oracle.graal.api.runtime",
274 ], 297 ],
275 "javaCompliance" : "1.8", 298 "javaCompliance" : "1.8",
276 "annotationProcessors" : [ 299 "annotationProcessors" : [
338 "subDir" : "graal", 361 "subDir" : "graal",
339 "sourceDirs" : ["src"], 362 "sourceDirs" : ["src"],
340 "dependencies" : [ 363 "dependencies" : [
341 "com.oracle.graal.code", 364 "com.oracle.graal.code",
342 "com.oracle.graal.test", 365 "com.oracle.graal.test",
343 "jvmci:JVMCI_API", 366 "com.oracle.graal.debug",
344 ], 367 ],
345 "checkstyle" : "com.oracle.graal.graph", 368 "checkstyle" : "com.oracle.graal.graph",
346 "javaCompliance" : "1.8", 369 "javaCompliance" : "1.8",
347 "workingSets" : "Graal,Assembler,Test", 370 "workingSets" : "Graal,Assembler,Test",
348 }, 371 },