annotate mx.truffle/suite.py @ 22055:2867e02e6fdb

Rename truffle-api.jar distribution to TRUFFLE_API
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Tue, 04 Aug 2015 11:15:08 +0200
parents 41c8ef1a33c2
children 8cb430bc5312
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 = {
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
2 "mxversion" : "5.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 },
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
11 "defaultLicence" : "GPLv2-CPE",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
12 "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
13
21705
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
14 # ------------- Libraries -------------
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
15
22014
9de5cff8e156 removed unnecessary library definitions
Doug Simon <doug.simon@oracle.com>
parents: 21988
diff changeset
16 "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
17 "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
18 "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
19 "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
20 "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
21 ],
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
22 "sha1" : "9504d5e2da5d78237239c5226e8200ec21182040",
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
23 "maven" : {
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
24 "groupId" : "jline",
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
25 "artifactId" : "jline",
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
26 "version" : "2.11",
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
27 }
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
28 },
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
29 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
30
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
31 "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
32
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
33 # ------------- 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
34
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
35 "com.oracle.truffle.api" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
36 "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
37 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
38 "javaCompliance" : "1.7",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
39 "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
40 "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
41 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
42
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
43 "com.oracle.truffle.api.test" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
44 "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
45 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
46 "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
47 "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
48 "mx:JUNIT",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
49 ],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
50 "checkstyle" : "com.oracle.truffle.dsl.processor",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
51 "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
52 "annotationProcessors" : ["TRUFFLE_DSL_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
53 "workingSets" : "API,Truffle,Test",
18888
31960077ea9d Specify jacoco project includes/excludes in suite.py
Paul Woegerer <paul.woegerer@oracle.com>
parents: 18746
diff changeset
54 "jacoco" : "exclude",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
55 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
56
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
57 "com.oracle.truffle.api.dsl" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
58 "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
59 "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
60 "dependencies" : ["com.oracle.truffle.api"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
61 "checkstyle" : "com.oracle.truffle.api",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
62 "javaCompliance" : "1.7",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
63 "workingSets" : "API,Truffle,Codegen",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
64 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
65
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
66 "com.oracle.truffle.api.dsl.test" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
67 "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
68 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
69 "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
70 "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
71 "mx:JUNIT",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
72 ],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
73 "checkstyle" : "com.oracle.truffle.dsl.processor",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
74 "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
75 "annotationProcessors" : ["TRUFFLE_DSL_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
76 "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
77 "jacoco" : "exclude",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
78 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
79
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
80 "com.oracle.truffle.dsl.processor" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
81 "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
82 "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
83 "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
84 "checkstyle" : "com.oracle.truffle.dsl.processor",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
85 "javaCompliance" : "1.7",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
86 "workingSets" : "Truffle,Codegen",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
87 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
88
18746
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
89 "com.oracle.truffle.api.interop" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
90 "subDir" : "truffle",
18746
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
91 "sourceDirs" : ["src"],
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
92 "dependencies" : ["com.oracle.truffle.api"],
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
93 "checkstyle" : "com.oracle.truffle.api",
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
94 "javaCompliance" : "1.7",
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
95 "workingSets" : "API,Truffle",
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
96 },
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
97
18407
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
98 "com.oracle.truffle.api.object" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
99 "subDir" : "truffle",
18407
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
100 "sourceDirs" : ["src"],
18746
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
101 "dependencies" : ["com.oracle.truffle.api.interop"],
18407
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
102 "checkstyle" : "com.oracle.truffle.api",
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
103 "javaCompliance" : "1.7",
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
104 "workingSets" : "API,Truffle",
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
105 },
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
106
18408
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
107 "com.oracle.truffle.object" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
108 "subDir" : "truffle",
18408
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
109 "sourceDirs" : ["src"],
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
110 "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
111 "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
112 "javaCompliance" : "1.7",
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
113 "workingSets" : "Truffle",
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
114 },
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
115
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
116 "com.oracle.truffle.object.basic" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
117 "subDir" : "truffle",
18408
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
118 "sourceDirs" : ["src"],
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
119 "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
120 "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
121 "javaCompliance" : "1.7",
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
122 "workingSets" : "Truffle",
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
123 },
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
124
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
125 "com.oracle.truffle.tck" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
126 "subDir" : "truffle",
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
127 "sourceDirs" : ["src"],
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
128 "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
129 "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
130 "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
131 "mx:JUNIT"
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
132 ],
22022
4e9d4f4a63da fixed more "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22021
diff changeset
133 "annotationProcessors" : ["TRUFFLE_DSL_PROCESSOR"],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
134 "checkstyle" : "com.oracle.truffle.api",
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
135 "javaCompliance" : "1.7",
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
136 "workingSets" : "Truffle,Tools",
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
137 },
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
138
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
139 "com.oracle.truffle.tools" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
140 "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
141 "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
142 "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
143 "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
144 "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
145 "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
146 },
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
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 "com.oracle.truffle.tools.test" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
149 "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
150 "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
151 "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
152 "com.oracle.truffle.tools",
22028
237f34c6d7bd inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22026
diff changeset
153 "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
154 ],
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
155 "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
156 "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
157 "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
158 },
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
159
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 "com.oracle.truffle.tools.debug.shell" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
161 "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
162 "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
163 "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
164 "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
165 "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
166 "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
167 "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
168 },
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
169
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
170 "com.oracle.truffle.sl" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
171 "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
172 "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
173 "dependencies" : [
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents: 18409
diff changeset
174 "com.oracle.truffle.api.dsl",
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents: 18409
diff changeset
175 "com.oracle.truffle.api.object",
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
176 "com.oracle.truffle.tools",
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents: 18409
diff changeset
177 ],
21941
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
178 "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
179 "annotationProcessors" : ["TRUFFLE_DSL_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
180 "workingSets" : "Truffle,SimpleLanguage",
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
181 "licence" : "UPL",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
182 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
183
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
184 "com.oracle.truffle.sl.test" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
185 "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
186 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
187 "dependencies" : [
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
188 "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
189 "com.oracle.truffle.sl",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
190 ],
21997
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21992
diff changeset
191 "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
192 "javaCompliance" : "1.7",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
193 "workingSets" : "Truffle,SimpleLanguage,Test",
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
194 "licence" : "UPL",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
195 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
196
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
197 "com.oracle.truffle.sl.tools" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
198 "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
199 "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
200 "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
201 "com.oracle.truffle.sl"],
21997
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21992
diff changeset
202 "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
203 "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
204 "workingSets" : "Truffle,SimpleLanguage,Tools",
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
205 "licence" : "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
206 },
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
207 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
208
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
209 "licences" : {
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
210 "UPL" : {
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
211 "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
212 "url" : "http://opensource.org/licenses/UPL",
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
213 }
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
214 },
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
215
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
216 "distributions" : {
21607
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
217
21705
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
218 # ------------- Distributions -------------
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
219
22055
2867e02e6fdb Rename truffle-api.jar distribution to TRUFFLE_API
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22054
diff changeset
220 "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
221 "path" : "build/truffle-api.jar",
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
222 "subDir" : "truffle",
21992
397164a68abf made sourcesPath attribute consistent with path attribute for TRUFFLE distribution
Doug Simon <doug.simon@oracle.com>
parents: 21988
diff changeset
223 "sourcesPath" : "build/truffle-api.src.zip",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
224 "javaCompliance" : "1.7",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
225 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
226 "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
227 "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
228 "com.oracle.truffle.tools"
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
229 ],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
230 "distDependencies" : [
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
231 ],
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
232 "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
233 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
234 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
235
21942
dd4050aadaf8 Using _ instead of - as agreed to yesterday
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21941
diff changeset
236 "TRUFFLE_TCK" : {
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
237 "path" : "build/truffle-tck.jar",
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
238 "subDir" : "truffle",
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
239 "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
240 "javaCompliance" : "1.7",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
241 "dependencies" : [
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
242 "com.oracle.truffle.tck"
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
243 ],
22055
2867e02e6fdb Rename truffle-api.jar distribution to TRUFFLE_API
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22054
diff changeset
244 "distDependencies" : ["TRUFFLE_API"],
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
245 "exclude" : ["mx:JUNIT"],
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
246 "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
247 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
248 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
249
21942
dd4050aadaf8 Using _ instead of - as agreed to yesterday
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21941
diff changeset
250 "TRUFFLE_DSL_PROCESSOR" : {
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
251 "path" : "build/truffle-dsl-processor.jar",
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
252 "subDir" : "truffle",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
253 "sourcesPath" : "build/truffle-dsl-processor.src.zip",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
254 "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
255 "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
256 "distDependencies" : ["TRUFFLE_API"],
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
257 "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
258 },
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
259
21942
dd4050aadaf8 Using _ instead of - as agreed to yesterday
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21941
diff changeset
260 "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
261 "path" : "build/truffle-sl.jar",
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
262 "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
263 "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
264 "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
265 "dependencies" : [
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
266 "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
267 "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
268 ],
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
269 "distDependencies" : [
22055
2867e02e6fdb Rename truffle-api.jar distribution to TRUFFLE_API
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22054
diff changeset
270 "TRUFFLE_API",
21942
dd4050aadaf8 Using _ instead of - as agreed to yesterday
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21941
diff changeset
271 "TRUFFLE_TCK",
dd4050aadaf8 Using _ instead of - as agreed to yesterday
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21941
diff changeset
272 "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
273 ],
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
274 "licence" : "UPL",
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
275 "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
276 },
21945
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
277
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
278 "TRUFFLE_DEBUG" : {
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
279 "path" : "build/truffle-debug.jar",
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
280 "subDir" : "truffle",
21945
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
281 "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
282 "javaCompliance" : "1.7",
21945
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
283 "dependencies" : [
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
284 "com.oracle.truffle.tools.debug.shell",
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
285 ],
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
286 "exclude" : ["JLINE"],
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
287 "distDependencies" : [
22055
2867e02e6fdb Rename truffle-api.jar distribution to TRUFFLE_API
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22054
diff changeset
288 "TRUFFLE_API",
21945
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
289 ],
22054
41c8ef1a33c2 Add additional metadata to suite.py
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22028
diff changeset
290 "description" : ".",
21945
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
291 }
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
292 },
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
293 }