comparison mx/suite.py @ 21551:5324104ac4f3

moved com.oracle.graal.hotspot.jvmci classes to com.oracle.jvmci.hotspot module (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Tue, 26 May 2015 17:13:37 +0200
parents f48a6cea31eb
children 9579a3c62a9e
comparison
equal deleted inserted replaced
21550:f48a6cea31eb 21551:5324104ac4f3
145 "jar" : "jfr.jar", 145 "jar" : "jfr.jar",
146 } 146 }
147 }, 147 },
148 148
149 "projects" : { 149 "projects" : {
150 "com.oracle.jvmci.common" : {
151 "subDir" : "graal",
152 "sourceDirs" : ["src"],
153 "checkstyle" : "com.oracle.graal.graph",
154 "javaCompliance" : "1.8",
155 "workingSets" : "API,Graal",
156 },
157
158 "com.oracle.jvmci.runtime" : {
159 "subDir" : "graal",
160 "sourceDirs" : ["src"],
161 "dependencies" : [
162 "com.oracle.graal.api.code"
163 ],
164 "checkstyle" : "com.oracle.graal.graph",
165 "javaCompliance" : "1.8",
166 "workingSets" : "API,Graal",
167 },
168
169 "com.oracle.jvmci.hotspot" : {
170 "subDir" : "graal",
171 "sourceDirs" : ["src"],
172 "dependencies" : [
173 "com.oracle.jvmci.runtime",
174 "com.oracle.jvmci.common",
175 "com.oracle.graal.hotspotvmconfig",
176 "com.oracle.graal.debug",
177 "com.oracle.graal.options",
178 "FINDBUGS"
179 ],
180 "annotationProcessors" : [
181 "com.oracle.graal.hotspotvmconfig.processor",
182 ],
183 "checkstyle" : "com.oracle.graal.graph",
184 "javaCompliance" : "1.8",
185 "workingSets" : "API,Graal",
186 },
187
150 "com.oracle.nfi" : { 188 "com.oracle.nfi" : {
151 "subDir" : "graal", 189 "subDir" : "graal",
152 "sourceDirs" : ["src"], 190 "sourceDirs" : ["src"],
153 "dependencies" : [], 191 "dependencies" : [],
154 "checkstyle" : "com.oracle.graal.graph", 192 "checkstyle" : "com.oracle.graal.graph",
165 ], 203 ],
166 "checkstyle" : "com.oracle.graal.graph", 204 "checkstyle" : "com.oracle.graal.graph",
167 "javaCompliance" : "1.7", 205 "javaCompliance" : "1.7",
168 }, 206 },
169 207
170 "com.oracle.jvmci.common" : {
171 "subDir" : "graal",
172 "sourceDirs" : ["src"],
173 "checkstyle" : "com.oracle.graal.graph",
174 "javaCompliance" : "1.8",
175 "workingSets" : "API,Graal",
176 },
177
178 "com.oracle.jvmci.runtime" : {
179 "subDir" : "graal",
180 "sourceDirs" : ["src"],
181 "dependencies" : [
182 "com.oracle.graal.api.code"
183 ],
184 "checkstyle" : "com.oracle.graal.graph",
185 "javaCompliance" : "1.8",
186 "workingSets" : "API,Graal",
187 },
188
189 "com.oracle.graal.api.collections" : { 208 "com.oracle.graal.api.collections" : {
190 "subDir" : "graal", 209 "subDir" : "graal",
191 "sourceDirs" : ["src"], 210 "sourceDirs" : ["src"],
192 "checkstyle" : "com.oracle.graal.graph", 211 "checkstyle" : "com.oracle.graal.graph",
193 "javaCompliance" : "1.8", 212 "javaCompliance" : "1.8",
322 341
323 "com.oracle.graal.hotspot" : { 342 "com.oracle.graal.hotspot" : {
324 "subDir" : "graal", 343 "subDir" : "graal",
325 "sourceDirs" : ["src"], 344 "sourceDirs" : ["src"],
326 "dependencies" : [ 345 "dependencies" : [
346 "com.oracle.jvmci.hotspot",
327 "com.oracle.graal.replacements", 347 "com.oracle.graal.replacements",
328 "com.oracle.graal.printer", 348 "com.oracle.graal.printer",
329 "com.oracle.graal.runtime", 349 "com.oracle.graal.runtime",
330 "com.oracle.graal.hotspotvmconfig",
331 ], 350 ],
332 "checkstyle" : "com.oracle.graal.graph", 351 "checkstyle" : "com.oracle.graal.graph",
333 "annotationProcessors" : [ 352 "annotationProcessors" : [
334 "com.oracle.graal.replacements.verifier", 353 "com.oracle.graal.replacements.verifier",
335 "com.oracle.jvmci.runtime.processor", 354 "com.oracle.jvmci.runtime.processor",