comparison mx/suite.py @ 21527:07b088d61d5d

added HotSpotJVMCIRuntime* classes, replaced references to HotSpotGraalRuntime in VM with HotSpotJVMCIRuntime (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Fri, 22 May 2015 23:26:20 +0200
parents a64d09dc4590
children c1e2fdb5fea3
comparison
equal deleted inserted replaced
21526:1da7aef31a08 21527:07b088d61d5d
165 ], 165 ],
166 "checkstyle" : "com.oracle.graal.graph", 166 "checkstyle" : "com.oracle.graal.graph",
167 "javaCompliance" : "1.7", 167 "javaCompliance" : "1.7",
168 }, 168 },
169 169
170 "com.oracle.jvmci.runtime" : {
171 "subDir" : "graal",
172 "sourceDirs" : ["src"],
173 "dependencies" : [
174 "com.oracle.graal.api.code"
175 ],
176 "checkstyle" : "com.oracle.graal.graph",
177 "javaCompliance" : "1.8",
178 "workingSets" : "API,Graal",
179 },
180
170 "com.oracle.graal.api.collections" : { 181 "com.oracle.graal.api.collections" : {
171 "subDir" : "graal", 182 "subDir" : "graal",
172 "sourceDirs" : ["src"], 183 "sourceDirs" : ["src"],
173 "checkstyle" : "com.oracle.graal.graph", 184 "checkstyle" : "com.oracle.graal.graph",
174 "javaCompliance" : "1.8", 185 "javaCompliance" : "1.8",
300 311
301 "com.oracle.graal.hotspot" : { 312 "com.oracle.graal.hotspot" : {
302 "subDir" : "graal", 313 "subDir" : "graal",
303 "sourceDirs" : ["src"], 314 "sourceDirs" : ["src"],
304 "dependencies" : [ 315 "dependencies" : [
316 "com.oracle.jvmci.runtime",
305 "com.oracle.graal.replacements", 317 "com.oracle.graal.replacements",
306 "com.oracle.graal.runtime", 318 "com.oracle.graal.runtime",
307 "com.oracle.graal.printer", 319 "com.oracle.graal.printer",
308 "com.oracle.graal.hotspotvmconfig", 320 "com.oracle.graal.hotspotvmconfig",
309 ], 321 ],