comparison mx/suite.py @ 21607:71b338926f2e

moved JVMCI classes into their own distributions (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Fri, 29 May 2015 22:27:38 +0200
parents 7a7cf422160b
children 2f92172fa320
comparison
equal deleted inserted replaced
21606:625b2b12b418 21607:71b338926f2e
356 ], 356 ],
357 "javaCompliance" : "1.8", 357 "javaCompliance" : "1.8",
358 "workingSets" : "Graal,HotSpot", 358 "workingSets" : "Graal,HotSpot",
359 }, 359 },
360 360
361 "com.oracle.jvmci.hotspot.loader" : {
362 "subDir" : "graal",
363 "sourceDirs" : ["src"],
364 "dependencies" : [],
365 "checkstyle" : "com.oracle.graal.graph",
366 "javaCompliance" : "1.8",
367 "workingSets" : "Graal,HotSpot",
368 },
369
370 "com.oracle.graal.hotspot.jfr" : { 361 "com.oracle.graal.hotspot.jfr" : {
371 "subDir" : "graal", 362 "subDir" : "graal",
372 "sourceDirs" : ["src"], 363 "sourceDirs" : ["src"],
373 "dependencies" : [ 364 "dependencies" : [
374 "com.oracle.graal.hotspot", 365 "com.oracle.graal.hotspot",
1246 "workingSets" : "Graal,Truffle,SPARC", 1237 "workingSets" : "Graal,Truffle,SPARC",
1247 } 1238 }
1248 }, 1239 },
1249 1240
1250 "distributions" : { 1241 "distributions" : {
1242
1243 "JVMCI_SERVICE" : {
1244 "path" : "build/jvmci-service.jar",
1245 "subDir" : "graal",
1246 "sourcesPath" : "build/jvmci-service.src.zip",
1247 "dependencies" : ["com.oracle.jvmci.service"],
1248 "exclude" : ["FINDBUGS"],
1249 },
1250
1251 "JVMCI_API" : {
1252 "path" : "build/jvmci-api.jar",
1253 "subDir" : "graal",
1254 "sourcesPath" : "build/jvmci-api.src.zip",
1255 "dependencies" : [
1256 "com.oracle.jvmci.runtime",
1257 "com.oracle.jvmci.options",
1258 "com.oracle.jvmci.common",
1259 "com.oracle.jvmci.debug",
1260 ],
1261 "exclude" : ["FINDBUGS"],
1262 "distDependencies" : [
1263 "JVMCI_SERVICE",
1264 ],
1265 },
1266
1267 "JVMCI_HOTSPOT" : {
1268 "path" : "build/jvmci-hotspot.jar",
1269 "subDir" : "graal",
1270 "sourcesPath" : "build/jvmci-hotspot.src.zip",
1271 "dependencies" : ["com.oracle.jvmci.hotspot"],
1272 "distDependencies" : [
1273 "JVMCI_API",
1274 ],
1275 },
1276
1251 "GRAAL" : { 1277 "GRAAL" : {
1252 "path" : "build/graal.jar", 1278 "path" : "build/graal.jar",
1253 "subDir" : "graal", 1279 "subDir" : "graal",
1254 "sourcesPath" : "build/graal.src.zip", 1280 "sourcesPath" : "build/graal.src.zip",
1255 "dependencies" : [ 1281 "dependencies" : [
1257 "com.oracle.graal.hotspot.sparc", 1283 "com.oracle.graal.hotspot.sparc",
1258 "com.oracle.graal.hotspot", 1284 "com.oracle.graal.hotspot",
1259 "com.oracle.graal.hotspot.jfr", 1285 "com.oracle.graal.hotspot.jfr",
1260 ], 1286 ],
1261 "exclude" : ["FINDBUGS"], 1287 "exclude" : ["FINDBUGS"],
1262 }, 1288 "distDependencies" : [
1263 1289 "JVMCI_HOTSPOT",
1264 "JVMCI_LOADER" : { 1290 "TRUFFLE",
1265 "path" : "build/jvmci-loader.jar", 1291 ],
1266 "subDir" : "graal",
1267 "sourcesPath" : "build/jvmci-loader.src.zip",
1268 "dependencies" : ["com.oracle.jvmci.hotspot.loader"],
1269 }, 1292 },
1270 1293
1271 "TRUFFLE" : { 1294 "TRUFFLE" : {
1272 "path" : "build/truffle.jar", 1295 "path" : "build/truffle.jar",
1273 "subDir" : "graal", 1296 "subDir" : "graal",
1304 "javaCompliance" : "1.7", 1327 "javaCompliance" : "1.7",
1305 "dependencies" : ["com.oracle.truffle.dsl.processor"], 1328 "dependencies" : ["com.oracle.truffle.dsl.processor"],
1306 "distDependencies" : ["TRUFFLE"], 1329 "distDependencies" : ["TRUFFLE"],
1307 } 1330 }
1308 }, 1331 },
1309
1310 } 1332 }