comparison mx.truffle/suite.py @ 22025:854e52a0869c

Merge with truffle
author Doug Simon <doug.simon@oracle.com>
date Tue, 21 Jul 2015 16:20:18 +0200
parents 4e9d4f4a63da 5bc7f7b867ab
children ed613cfa37da
comparison
equal deleted inserted replaced
22024:216e0683bbf1 22025:854e52a0869c
142 "checkstyle" : "com.oracle.truffle.api", 142 "checkstyle" : "com.oracle.truffle.api",
143 "javaCompliance" : "1.7", 143 "javaCompliance" : "1.7",
144 "workingSets" : "Truffle,Tools", 144 "workingSets" : "Truffle,Tools",
145 }, 145 },
146 146
147 "com.oracle.truffle.tools.debug.engine" : {
148 "subDir" : "truffle",
149 "sourceDirs" : ["src"],
150 "dependencies" : ["com.oracle.truffle.tools"],
151 "checkstyle" : "com.oracle.truffle.api",
152 "javaCompliance" : "1.7",
153 "workingSets" : "Truffle,Tools",
154 },
155
156 "com.oracle.truffle.tools.debug.shell" : { 147 "com.oracle.truffle.tools.debug.shell" : {
157 "subDir" : "truffle", 148 "subDir" : "truffle",
158 "sourceDirs" : ["src"], 149 "sourceDirs" : ["src"],
159 "dependencies" : ["com.oracle.truffle.tools.debug.engine", 150 "dependencies" : ["com.oracle.truffle.tools",
160 "JLINE"], 151 "JLINE"],
161 "checkstyle" : "com.oracle.truffle.api", 152 "checkstyle" : "com.oracle.truffle.api",
162 "javaCompliance" : "1.7", 153 "javaCompliance" : "1.7",
163 "workingSets" : "Truffle,Tools", 154 "workingSets" : "Truffle,Tools",
164 }, 155 },
169 "dependencies" : [ 160 "dependencies" : [
170 "com.oracle.truffle.api.dsl", 161 "com.oracle.truffle.api.dsl",
171 "com.oracle.truffle.api.object", 162 "com.oracle.truffle.api.object",
172 "com.oracle.truffle.tools", 163 "com.oracle.truffle.tools",
173 ], 164 ],
174 "checkstyle" : "com.oracle.truffle.dsl.processor",
175 "javaCompliance" : "1.7", 165 "javaCompliance" : "1.7",
176 "annotationProcessors" : ["TRUFFLE_DSL_PROCESSOR"], 166 "annotationProcessors" : ["TRUFFLE_DSL_PROCESSOR"],
177 "workingSets" : "Truffle,SimpleLanguage", 167 "workingSets" : "Truffle,SimpleLanguage",
178 }, 168 },
179 169
180 "com.oracle.truffle.sl.test" : { 170 "com.oracle.truffle.sl.test" : {
181 "subDir" : "truffle", 171 "subDir" : "truffle",
182 "sourceDirs" : ["src"], 172 "sourceDirs" : ["src"],
183 "dependencies" : [ 173 "dependencies" : [
184 "com.oracle.truffle.tck", 174 "com.oracle.truffle.tck",
185 "com.oracle.truffle.sl" 175 "com.oracle.truffle.sl",
186 ], 176 ],
187 "checkstyle" : "com.oracle.truffle.dsl.processor", 177 "checkstyle" : "com.oracle.truffle.sl",
188 "javaCompliance" : "1.7", 178 "javaCompliance" : "1.7",
189 "workingSets" : "Truffle,SimpleLanguage,Test", 179 "workingSets" : "Truffle,SimpleLanguage,Test",
190 }, 180 },
191 181
192 "com.oracle.truffle.sl.tools" : { 182 "com.oracle.truffle.sl.tools" : {
193 "subDir" : "truffle", 183 "subDir" : "truffle",
194 "sourceDirs" : ["src"], 184 "sourceDirs" : ["src"],
195 "dependencies" : ["com.oracle.truffle.tools.debug.shell", 185 "dependencies" : ["com.oracle.truffle.tools.debug.shell",
196 "com.oracle.truffle.sl"], 186 "com.oracle.truffle.sl"],
197 "checkstyle" : "com.oracle.truffle.api", 187 "checkstyle" : "com.oracle.truffle.sl",
198 "javaCompliance" : "1.7", 188 "javaCompliance" : "1.7",
199 "workingSets" : "Truffle,SimpleLanguage,Tools", 189 "workingSets" : "Truffle,SimpleLanguage,Tools",
200 }, 190 },
201 }, 191 },
202 192
205 # ------------- Distributions ------------- 195 # ------------- Distributions -------------
206 196
207 "TRUFFLE" : { 197 "TRUFFLE" : {
208 "path" : "build/truffle-api.jar", 198 "path" : "build/truffle-api.jar",
209 "subDir" : "truffle", 199 "subDir" : "truffle",
210 "sourcesPath" : "build/truffle.src.zip", 200 "sourcesPath" : "build/truffle-api.src.zip",
211 "javaCompliance" : "1.7", 201 "javaCompliance" : "1.7",
212 "dependencies" : [ 202 "dependencies" : [
213 "com.oracle.truffle.api.dsl", 203 "com.oracle.truffle.api.dsl",
214 "com.oracle.truffle.object.basic", 204 "com.oracle.truffle.object.basic",
215 "com.oracle.truffle.tools" 205 "com.oracle.truffle.tools"