annotate mx.truffle/suite.py @ 22074:50ed2658284e

update to mx version 5.2.2
author Andreas Woess <andreas.woess@oracle.com>
date Fri, 07 Aug 2015 20:00:39 +0200
parents 261afe14d1a4
children 049e6eeaf80a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1 suite = {
22074
50ed2658284e update to mx version 5.2.2
Andreas Woess <andreas.woess@oracle.com>
parents: 22073
diff changeset
2 "mxversion" : "5.2.2",
21953
969ae2657b92 Renaming the suite to truffle
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21951
diff changeset
3 "name" : "truffle",
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
4 "url" : "http://openjdk.java.net/projects/graal",
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
5 "developer" : {
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
6 "name" : "Truffle and Graal developers",
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
7 "email" : "graal-dev@openjdk.java.net",
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
8 "organization" : "Graal",
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
9 "organizationUrl" : "http://openjdk.java.net/projects/graal",
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
10 },
22057
8cb430bc5312 Add snapshots repository
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22055
diff changeset
11 "repositories" : {
8cb430bc5312 Add snapshots repository
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22055
diff changeset
12 "lafo-snapshots" : {
8cb430bc5312 Add snapshots repository
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22055
diff changeset
13 "url" : "http://lafo.ssw.uni-linz.ac.at/nexus/content/repositories/snapshots",
22074
50ed2658284e update to mx version 5.2.2
Andreas Woess <andreas.woess@oracle.com>
parents: 22073
diff changeset
14 "licenses" : ["GPLv2-CPE", "UPL"]
22057
8cb430bc5312 Add snapshots repository
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22055
diff changeset
15 },
8cb430bc5312 Add snapshots repository
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22055
diff changeset
16 },
22074
50ed2658284e update to mx version 5.2.2
Andreas Woess <andreas.woess@oracle.com>
parents: 22073
diff changeset
17 "defaultLicense" : "GPLv2-CPE",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
18 "libraries" : {
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
19
21705
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
20 # ------------- Libraries -------------
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
21
22014
9de5cff8e156 removed unnecessary library definitions
Doug Simon <doug.simon@oracle.com>
parents: 21988
diff changeset
22 "JLINE" : {
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
23 "path" : "lib/jline-2.11.jar",
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
24 "urls" : [
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
25 "http://lafo.ssw.uni-linz.ac.at/graal-external-deps/jline-2.11.jar",
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
26 "https://search.maven.org/remotecontent?filepath=jline/jline/2.11/jline-2.11.jar",
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
27 ],
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
28 "sha1" : "9504d5e2da5d78237239c5226e8200ec21182040",
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
29 "maven" : {
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
30 "groupId" : "jline",
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
31 "artifactId" : "jline",
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
32 "version" : "2.11",
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
33 }
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
34 },
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
35 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
36
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
37 "projects" : {
21674
e0b5d4fcd929 moved HotSpotTargetDescription and [AMD64|SPARC]HotSpotRegisterConfig into JVMCI namespace (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21673
diff changeset
38
21672
476be2a91059 ordered projects in suite.py into JVMCI, NIF, Graal, Truffle and GraalTruffle sections
Doug Simon <doug.simon@oracle.com>
parents: 21664
diff changeset
39 # ------------- Truffle -------------
21674
e0b5d4fcd929 moved HotSpotTargetDescription and [AMD64|SPARC]HotSpotRegisterConfig into JVMCI namespace (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21673
diff changeset
40
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
41 "com.oracle.truffle.api" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
42 "subDir" : "truffle",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
43 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
44 "javaCompliance" : "1.7",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
45 "workingSets" : "API,Truffle",
21988
8a09e8c7725a mx2 support: added definition of main.class property to be injected into nbproject/project.properties
Doug Simon <doug.simon@oracle.com>
parents: 21981
diff changeset
46 "netbeans.project.properties" : "main.class=com.oracle.truffle.api.impl.Accessor",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
47 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
48
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
49 "com.oracle.truffle.api.test" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
50 "subDir" : "truffle",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
51 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
52 "dependencies" : [
21969
9124ca6c46b0 ForeignAccess is singlethreaded. Accessing objects from other languages (via ForeignAccess) will only be possible from a previously selected thread.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21961
diff changeset
53 "com.oracle.truffle.api.interop",
22028
237f34c6d7bd inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22026
diff changeset
54 "mx:JUNIT",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
55 ],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
56 "checkstyle" : "com.oracle.truffle.dsl.processor",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
57 "javaCompliance" : "1.7",
22019
74391848e5cb annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22017
diff changeset
58 "annotationProcessors" : ["TRUFFLE_DSL_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
59 "workingSets" : "API,Truffle,Test",
18888
31960077ea9d Specify jacoco project includes/excludes in suite.py
Paul Woegerer <paul.woegerer@oracle.com>
parents: 18746
diff changeset
60 "jacoco" : "exclude",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
61 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
62
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
63 "com.oracle.truffle.api.dsl" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
64 "subDir" : "truffle",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
65 "sourceDirs" : ["src"],
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
66 "dependencies" : ["com.oracle.truffle.api"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
67 "checkstyle" : "com.oracle.truffle.api",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
68 "javaCompliance" : "1.7",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
69 "workingSets" : "API,Truffle,Codegen",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
70 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
71
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
72 "com.oracle.truffle.api.dsl.test" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
73 "subDir" : "truffle",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
74 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
75 "dependencies" : [
21420
fb17e716b03c The annotation processor should verify proper use of @Child annotation during compilation time and prevent usage of final.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21411
diff changeset
76 "com.oracle.truffle.dsl.processor",
22028
237f34c6d7bd inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22026
diff changeset
77 "mx:JUNIT",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
78 ],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
79 "checkstyle" : "com.oracle.truffle.dsl.processor",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
80 "javaCompliance" : "1.7",
22019
74391848e5cb annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22017
diff changeset
81 "annotationProcessors" : ["TRUFFLE_DSL_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
82 "workingSets" : "API,Truffle,Codegen,Test",
18888
31960077ea9d Specify jacoco project includes/excludes in suite.py
Paul Woegerer <paul.woegerer@oracle.com>
parents: 18746
diff changeset
83 "jacoco" : "exclude",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
84 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
85
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
86 "com.oracle.truffle.dsl.processor" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
87 "subDir" : "truffle",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
88 "sourceDirs" : ["src"],
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
89 "dependencies" : ["com.oracle.truffle.api.dsl"],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
90 "checkstyle" : "com.oracle.truffle.dsl.processor",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
91 "javaCompliance" : "1.7",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
92 "workingSets" : "Truffle,Codegen",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
93 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
94
18746
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
95 "com.oracle.truffle.api.interop" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
96 "subDir" : "truffle",
18746
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
97 "sourceDirs" : ["src"],
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
98 "dependencies" : ["com.oracle.truffle.api"],
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
99 "checkstyle" : "com.oracle.truffle.api",
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
100 "javaCompliance" : "1.7",
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
101 "workingSets" : "API,Truffle",
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
102 },
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
103
18407
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
104 "com.oracle.truffle.api.object" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
105 "subDir" : "truffle",
18407
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
106 "sourceDirs" : ["src"],
18746
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
107 "dependencies" : ["com.oracle.truffle.api.interop"],
18407
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
108 "checkstyle" : "com.oracle.truffle.api",
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
109 "javaCompliance" : "1.7",
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
110 "workingSets" : "API,Truffle",
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
111 },
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
112
18408
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
113 "com.oracle.truffle.object" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
114 "subDir" : "truffle",
18408
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
115 "sourceDirs" : ["src"],
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
116 "dependencies" : ["com.oracle.truffle.api.object"],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
117 "checkstyle" : "com.oracle.truffle.dsl.processor",
18408
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
118 "javaCompliance" : "1.7",
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
119 "workingSets" : "Truffle",
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
120 },
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
121
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
122 "com.oracle.truffle.object.basic" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
123 "subDir" : "truffle",
18408
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
124 "sourceDirs" : ["src"],
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
125 "dependencies" : ["com.oracle.truffle.object"],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
126 "checkstyle" : "com.oracle.truffle.dsl.processor",
18408
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
127 "javaCompliance" : "1.7",
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
128 "workingSets" : "Truffle",
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
129 },
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
130
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
131 "com.oracle.truffle.tck" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
132 "subDir" : "truffle",
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
133 "sourceDirs" : ["src"],
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
134 "dependencies" : [
21960
a88981c5ce8b Initial test for Java Interop: Perform callback to Math.min and Math.max via TruffleObject and Message.createExecute(2).
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21953
diff changeset
135 "com.oracle.truffle.api.dsl",
a88981c5ce8b Initial test for Java Interop: Perform callback to Math.min and Math.max via TruffleObject and Message.createExecute(2).
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21953
diff changeset
136 "com.oracle.truffle.api.interop",
22028
237f34c6d7bd inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22026
diff changeset
137 "mx:JUNIT"
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
138 ],
22022
4e9d4f4a63da fixed more "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22021
diff changeset
139 "annotationProcessors" : ["TRUFFLE_DSL_PROCESSOR"],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
140 "checkstyle" : "com.oracle.truffle.api",
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
141 "javaCompliance" : "1.7",
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
142 "workingSets" : "Truffle,Tools",
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
143 },
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
144
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
145 "com.oracle.truffle.tools" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
146 "subDir" : "truffle",
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
147 "sourceDirs" : ["src"],
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
148 "dependencies" : ["com.oracle.truffle.api"],
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
149 "checkstyle" : "com.oracle.truffle.api",
21676
90bccd2369d9 Add the tools API to truffle.jar, and make tools 1.7 compatible.
Chris Seaton <chris.seaton@oracle.com>
parents: 21664
diff changeset
150 "javaCompliance" : "1.7",
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
151 "workingSets" : "Truffle,Tools",
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
152 },
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
153
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
154 "com.oracle.truffle.tools.test" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
155 "subDir" : "truffle",
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
156 "sourceDirs" : ["src"],
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
157 "dependencies" : [
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
158 "com.oracle.truffle.tools",
22028
237f34c6d7bd inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22026
diff changeset
159 "mx:JUNIT"
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
160 ],
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
161 "checkstyle" : "com.oracle.truffle.api",
21941
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
162 "javaCompliance" : "1.7",
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
163 "workingSets" : "Truffle,Tools",
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
164 },
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
165
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
166 "com.oracle.truffle.tools.debug.shell" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
167 "subDir" : "truffle",
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
168 "sourceDirs" : ["src"],
22003
5bc7f7b867ab Making debugger always on for each TruffleVM execution. Introducing EventConsumer to process such debugger events. Requesting each RootNode to be associated with a TruffleLanguage, so debugger can find out proper context for each Node where executions gets suspended.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21997
diff changeset
169 "dependencies" : ["com.oracle.truffle.tools",
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
170 "JLINE"],
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
171 "checkstyle" : "com.oracle.truffle.api",
21941
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
172 "javaCompliance" : "1.7",
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
173 "workingSets" : "Truffle,Tools",
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
174 },
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
175
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
176 "com.oracle.truffle.sl" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
177 "subDir" : "truffle",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
178 "sourceDirs" : ["src"],
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents: 18409
diff changeset
179 "dependencies" : [
22073
261afe14d1a4 let truffle.sl project depend on TRUFFLE_API distribution to ensure services are found
Andreas Woess <andreas.woess@oracle.com>
parents: 22058
diff changeset
180 "TRUFFLE_API",
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents: 18409
diff changeset
181 ],
21941
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
182 "javaCompliance" : "1.7",
22019
74391848e5cb annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22017
diff changeset
183 "annotationProcessors" : ["TRUFFLE_DSL_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
184 "workingSets" : "Truffle,SimpleLanguage",
22074
50ed2658284e update to mx version 5.2.2
Andreas Woess <andreas.woess@oracle.com>
parents: 22073
diff changeset
185 "license" : "UPL",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
186 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
187
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
188 "com.oracle.truffle.sl.test" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
189 "subDir" : "truffle",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
190 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
191 "dependencies" : [
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
192 "com.oracle.truffle.tck",
22003
5bc7f7b867ab Making debugger always on for each TruffleVM execution. Introducing EventConsumer to process such debugger events. Requesting each RootNode to be associated with a TruffleLanguage, so debugger can find out proper context for each Node where executions gets suspended.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21997
diff changeset
193 "com.oracle.truffle.sl",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
194 ],
21997
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21992
diff changeset
195 "checkstyle" : "com.oracle.truffle.sl",
21941
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
196 "javaCompliance" : "1.7",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
197 "workingSets" : "Truffle,SimpleLanguage,Test",
22074
50ed2658284e update to mx version 5.2.2
Andreas Woess <andreas.woess@oracle.com>
parents: 22073
diff changeset
198 "license" : "UPL",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
199 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
200
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
201 "com.oracle.truffle.sl.tools" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
202 "subDir" : "truffle",
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
203 "sourceDirs" : ["src"],
21946
a50fa3266a0a Truffle/SL/Debugging: add to the SLREPL debugger an artificial static dependency on SLLanguage, to ensure that it will be on the class path. This is a workaround for the lack of a mechanism to record such dynamic dependencies in the face of complaint by j"canonicalizeprojects".
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21945
diff changeset
204 "dependencies" : ["com.oracle.truffle.tools.debug.shell",
a50fa3266a0a Truffle/SL/Debugging: add to the SLREPL debugger an artificial static dependency on SLLanguage, to ensure that it will be on the class path. This is a workaround for the lack of a mechanism to record such dynamic dependencies in the face of complaint by j"canonicalizeprojects".
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21945
diff changeset
205 "com.oracle.truffle.sl"],
21997
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21992
diff changeset
206 "checkstyle" : "com.oracle.truffle.sl",
21941
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
207 "javaCompliance" : "1.7",
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
208 "workingSets" : "Truffle,SimpleLanguage,Tools",
22074
50ed2658284e update to mx version 5.2.2
Andreas Woess <andreas.woess@oracle.com>
parents: 22073
diff changeset
209 "license" : "UPL",
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
210 },
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
211 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
212
22074
50ed2658284e update to mx version 5.2.2
Andreas Woess <andreas.woess@oracle.com>
parents: 22073
diff changeset
213 "licenses" : {
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
214 "UPL" : {
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
215 "name" : "Universal Permissive License, Version 1.0",
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
216 "url" : "http://opensource.org/licenses/UPL",
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
217 }
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
218 },
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
219
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
220 "distributions" : {
21607
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
221
21705
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
222 # ------------- Distributions -------------
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
223
22055
2867e02e6fdb Rename truffle-api.jar distribution to TRUFFLE_API
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22054
diff changeset
224 "TRUFFLE_API" : {
21981
da5e694d2b3c Using groupId=com.oracle.[suite.name] when deploying the artifacts. Iterating thru all distributions (except ap ones). Using name of the JAR file as artifactId.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21977
diff changeset
225 "path" : "build/truffle-api.jar",
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
226 "subDir" : "truffle",
21992
397164a68abf made sourcesPath attribute consistent with path attribute for TRUFFLE distribution
Doug Simon <doug.simon@oracle.com>
parents: 21988
diff changeset
227 "sourcesPath" : "build/truffle-api.src.zip",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
228 "javaCompliance" : "1.7",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
229 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
230 "com.oracle.truffle.api.dsl",
18409
d405651001d1 Truffle: add object API to truffle distribution, update changelog
Andreas Woess <andreas.woess@jku.at>
parents: 18408
diff changeset
231 "com.oracle.truffle.object.basic",
21676
90bccd2369d9 Add the tools API to truffle.jar, and make tools 1.7 compatible.
Chris Seaton <chris.seaton@oracle.com>
parents: 21664
diff changeset
232 "com.oracle.truffle.tools"
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
233 ],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
234 "distDependencies" : [
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
235 ],
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
236 "description" : """Truffle is a multi-language framework for executing dynamic languages
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
237 that achieves high performance when combined with Graal.""",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
238 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
239
21942
dd4050aadaf8 Using _ instead of - as agreed to yesterday
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21941
diff changeset
240 "TRUFFLE_TCK" : {
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
241 "path" : "build/truffle-tck.jar",
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
242 "subDir" : "truffle",
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
243 "sourcesPath" : "build/truffle-tck.src.zip",
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
244 "javaCompliance" : "1.7",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
245 "dependencies" : [
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
246 "com.oracle.truffle.tck"
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
247 ],
22055
2867e02e6fdb Rename truffle-api.jar distribution to TRUFFLE_API
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22054
diff changeset
248 "distDependencies" : ["TRUFFLE_API"],
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
249 "exclude" : ["mx:JUNIT"],
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
250 "description" : """A collection of tests that can certify language implementation to be compliant
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
251 with most recentrequirements of the Truffle infrastructure and tooling.""",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
252 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
253
21942
dd4050aadaf8 Using _ instead of - as agreed to yesterday
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21941
diff changeset
254 "TRUFFLE_DSL_PROCESSOR" : {
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
255 "path" : "build/truffle-dsl-processor.jar",
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
256 "subDir" : "truffle",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
257 "sourcesPath" : "build/truffle-dsl-processor.src.zip",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
258 "javaCompliance" : "1.7",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
259 "dependencies" : ["com.oracle.truffle.dsl.processor"],
22055
2867e02e6fdb Rename truffle-api.jar distribution to TRUFFLE_API
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22054
diff changeset
260 "distDependencies" : ["TRUFFLE_API"],
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
261 "description" : "The Truffle DSL Processor generates source code for nodes that are declared using the DSL.",
21941
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
262 },
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
263
21942
dd4050aadaf8 Using _ instead of - as agreed to yesterday
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21941
diff changeset
264 "TRUFFLE_SL" : {
21941
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
265 "path" : "build/truffle-sl.jar",
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
266 "subDir" : "truffle",
21941
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
267 "sourcesPath" : "build/truffle-sl.src.zip",
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
268 "javaCompliance" : "1.7",
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
269 "dependencies" : [
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
270 "com.oracle.truffle.sl",
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
271 "com.oracle.truffle.sl.test"
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
272 ],
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
273 "distDependencies" : [
22055
2867e02e6fdb Rename truffle-api.jar distribution to TRUFFLE_API
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22054
diff changeset
274 "TRUFFLE_API",
21942
dd4050aadaf8 Using _ instead of - as agreed to yesterday
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21941
diff changeset
275 "TRUFFLE_TCK",
dd4050aadaf8 Using _ instead of - as agreed to yesterday
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21941
diff changeset
276 "TRUFFLE_DSL_PROCESSOR"
21941
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
277 ],
22074
50ed2658284e update to mx version 5.2.2
Andreas Woess <andreas.woess@oracle.com>
parents: 22073
diff changeset
278 "license" : "UPL",
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
279 "description" : "Truffle SL is an example language implemented using the Truffle API.",
21941
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
280 },
21945
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
281
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
282 "TRUFFLE_DEBUG" : {
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
283 "path" : "build/truffle-debug.jar",
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
284 "subDir" : "truffle",
21945
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
285 "sourcesPath" : "build/truffle-debug.src.zip",
21973
44aba5c09592 Stick with JDK7 for all projects for now
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21969
diff changeset
286 "javaCompliance" : "1.7",
21945
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
287 "dependencies" : [
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
288 "com.oracle.truffle.tools.debug.shell",
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
289 ],
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
290 "exclude" : ["JLINE"],
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
291 "distDependencies" : [
22055
2867e02e6fdb Rename truffle-api.jar distribution to TRUFFLE_API
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22054
diff changeset
292 "TRUFFLE_API",
21945
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
293 ],
22058
e559a45969a7 Change temporary description for truffle-debug
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22057
diff changeset
294 "description" : "Experimental REPL server to build your debugger console for your language.",
21945
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
295 }
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
296 },
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
297 }