annotate mx.truffle/suite.py @ 22017:6efd3e3389ad

updated mx2 version requirement
author Doug Simon <doug.simon@oracle.com>
date Wed, 08 Jul 2015 23:35:05 +0200
parents 9de5cff8e156
children 74391848e5cb
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 = {
22017
6efd3e3389ad updated mx2 version requirement
Doug Simon <doug.simon@oracle.com>
parents: 22014
diff changeset
2 "mxversion" : "4.3.4",
21953
969ae2657b92 Renaming the suite to truffle
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21951
diff changeset
3 "name" : "truffle",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
4 "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
5
21705
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
6 # ------------- Libraries -------------
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
7
22014
9de5cff8e156 removed unnecessary library definitions
Doug Simon <doug.simon@oracle.com>
parents: 21988
diff changeset
8 "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
9 "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
10 "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
11 "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
12 "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
13 ],
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
14 "sha1" : "9504d5e2da5d78237239c5226e8200ec21182040",
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
15 },
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
16 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
17
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
18 "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
19
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
20 # ------------- 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
21
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
22 "com.oracle.truffle.api" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
23 "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
24 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
25 "javaCompliance" : "1.7",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
26 "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
27 "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
28 },
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 "com.oracle.truffle.api.test" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
31 "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
32 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
33 "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
34 "com.oracle.truffle.api.interop",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
35 "JUNIT",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
36 ],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
37 "checkstyle" : "com.oracle.truffle.dsl.processor",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
38 "javaCompliance" : "1.7",
21716
2f9e4d984d16 Give languages a chance to do implicit exports. Prefer explicit exports over implicit ones.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21713
diff changeset
39 "annotationProcessors" : ["com.oracle.truffle.dsl.processor"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
40 "workingSets" : "API,Truffle,Test",
18888
31960077ea9d Specify jacoco project includes/excludes in suite.py
Paul Woegerer <paul.woegerer@oracle.com>
parents: 18746
diff changeset
41 "jacoco" : "exclude",
17160
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
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
44 "com.oracle.truffle.api.dsl" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
45 "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
46 "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
47 "dependencies" : ["com.oracle.truffle.api"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
48 "checkstyle" : "com.oracle.truffle.api",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
49 "javaCompliance" : "1.7",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
50 "workingSets" : "API,Truffle,Codegen",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
51 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
52
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
53 "com.oracle.truffle.api.dsl.test" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
54 "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
55 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
56 "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
57 "com.oracle.truffle.dsl.processor",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
58 "JUNIT",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
59 ],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
60 "checkstyle" : "com.oracle.truffle.dsl.processor",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
61 "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
62 "annotationProcessors" : ["com.oracle.truffle.dsl.processor"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
63 "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
64 "jacoco" : "exclude",
17160
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
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
67 "com.oracle.truffle.dsl.processor" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
68 "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
69 "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
70 "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
71 "checkstyle" : "com.oracle.truffle.dsl.processor",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
72 "javaCompliance" : "1.7",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
73 "workingSets" : "Truffle,Codegen",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
74 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
75
18746
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
76 "com.oracle.truffle.api.interop" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
77 "subDir" : "truffle",
18746
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
78 "sourceDirs" : ["src"],
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
79 "dependencies" : ["com.oracle.truffle.api"],
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
80 "checkstyle" : "com.oracle.truffle.api",
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
81 "javaCompliance" : "1.7",
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
82 "workingSets" : "API,Truffle",
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
83 },
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
84
18407
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
85 "com.oracle.truffle.api.object" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
86 "subDir" : "truffle",
18407
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
87 "sourceDirs" : ["src"],
18746
5294b624e2f0 Interop: add interface
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 18744
diff changeset
88 "dependencies" : ["com.oracle.truffle.api.interop"],
18407
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
89 "checkstyle" : "com.oracle.truffle.api",
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
90 "javaCompliance" : "1.7",
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
91 "workingSets" : "API,Truffle",
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
92 },
f439fdb137a3 Truffle: initial commit of object API
Andreas Woess <andreas.woess@jku.at>
parents: 18246
diff changeset
93
18408
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
94 "com.oracle.truffle.object" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
95 "subDir" : "truffle",
18408
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
96 "sourceDirs" : ["src"],
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
97 "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
98 "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
99 "javaCompliance" : "1.7",
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
100 "workingSets" : "Truffle",
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
101 },
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
102
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
103 "com.oracle.truffle.object.basic" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
104 "subDir" : "truffle",
18408
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
105 "sourceDirs" : ["src"],
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
106 "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
107 "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
108 "javaCompliance" : "1.7",
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
109 "workingSets" : "Truffle",
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
110 },
2c3666f44855 Truffle: initial commit of object API implementation
Andreas Woess <andreas.woess@jku.at>
parents: 18407
diff changeset
111
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
112 "com.oracle.truffle.tck" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
113 "subDir" : "truffle",
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
114 "sourceDirs" : ["src"],
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
115 "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
116 "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
117 "com.oracle.truffle.api.interop",
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
118 "JUNIT"
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
119 ],
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
120 "checkstyle" : "com.oracle.truffle.api",
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
121 "javaCompliance" : "1.7",
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
122 "annotationProcessors" : ["com.oracle.truffle.dsl.processor"],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
123 "workingSets" : "Truffle,Tools",
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
124 },
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
125
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
126 "com.oracle.truffle.tools" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
127 "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
128 "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
129 "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
130 "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
131 "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
132 "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
133 },
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
134
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
135 "com.oracle.truffle.tools.test" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
136 "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
137 "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
138 "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
139 "com.oracle.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
140 "JUNIT"
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 ],
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 "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
143 "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
144 "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
145 },
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 "com.oracle.truffle.tools.debug.engine" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
148 "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
149 "sourceDirs" : ["src"],
21579
6fffb62ccb32 Fix project dependency
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21578
diff changeset
150 "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
151 "checkstyle" : "com.oracle.truffle.api",
21973
44aba5c09592 Stick with JDK7 for all projects for now
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21969
diff changeset
152 "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
153 "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
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
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 "com.oracle.truffle.tools.debug.shell" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
157 "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
158 "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
159 "dependencies" : ["com.oracle.truffle.tools.debug.engine",
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 "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
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
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
166 "com.oracle.truffle.sl" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
167 "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
168 "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
169 "dependencies" : [
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents: 18409
diff changeset
170 "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
171 "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
172 "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
173 ],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
174 "checkstyle" : "com.oracle.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
175 "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
176 "annotationProcessors" : ["com.oracle.truffle.dsl.processor"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
177 "workingSets" : "Truffle,SimpleLanguage",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
178 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
179
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
180 "com.oracle.truffle.sl.test" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
181 "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
182 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
183 "dependencies" : [
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
184 "com.oracle.truffle.tck",
21490
3286fb5fea4a Introducing standard I/O and error into Env and using TruffleVM to execute SL test cases. Adding SLTckTest to verify SL language interop.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21471
diff changeset
185 "com.oracle.truffle.sl"
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
186 ],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
187 "checkstyle" : "com.oracle.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
188 "javaCompliance" : "1.7",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
189 "workingSets" : "Truffle,SimpleLanguage,Test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
190 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
191
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
192 "com.oracle.truffle.sl.tools" : {
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
193 "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
194 "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
195 "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
196 "com.oracle.truffle.sl"],
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 "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
198 "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
199 "workingSets" : "Truffle,SimpleLanguage,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
200 },
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
201 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
202
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
203 "distributions" : {
21607
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
204
21705
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
205 # ------------- Distributions -------------
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
206
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
207 "TRUFFLE" : {
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
208 "path" : "build/truffle-api.jar",
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
209 "subDir" : "truffle",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
210 "sourcesPath" : "build/truffle.src.zip",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
211 "javaCompliance" : "1.7",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
212 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
213 "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
214 "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
215 "com.oracle.truffle.tools"
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
216 ],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
217 "distDependencies" : [
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
218 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
219 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
220
21942
dd4050aadaf8 Using _ instead of - as agreed to yesterday
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21941
diff changeset
221 "TRUFFLE_TCK" : {
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
222 "path" : "build/truffle-tck.jar",
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
223 "subDir" : "truffle",
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
224 "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
225 "javaCompliance" : "1.7",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
226 "dependencies" : [
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
227 "com.oracle.truffle.tck"
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
228 ],
21938
0a6e10379b9b Keeping only Truffle-related modules in this repository
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
229 "distDependencies" : ["TRUFFLE"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
230 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
231
21942
dd4050aadaf8 Using _ instead of - as agreed to yesterday
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21941
diff changeset
232 "TRUFFLE_DSL_PROCESSOR" : {
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
233 "path" : "build/truffle-dsl-processor.jar",
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
234 "subDir" : "truffle",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
235 "sourcesPath" : "build/truffle-dsl-processor.src.zip",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
236 "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
237 "dependencies" : ["com.oracle.truffle.dsl.processor"],
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
238 "distDependencies" : ["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
239 },
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
240
21942
dd4050aadaf8 Using _ instead of - as agreed to yesterday
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21941
diff changeset
241 "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
242 "path" : "build/truffle-sl.jar",
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
243 "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
244 "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
245 "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
246 "dependencies" : [
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
247 "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
248 "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
249 ],
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
250 "distDependencies" : [
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
251 "TRUFFLE",
21942
dd4050aadaf8 Using _ instead of - as agreed to yesterday
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21941
diff changeset
252 "TRUFFLE_TCK",
dd4050aadaf8 Using _ instead of - as agreed to yesterday
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21941
diff changeset
253 "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
254 ],
0a00a5bd7c70 Need to expose also TRUFFLE-SL as Graal tests against that language
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21938
diff changeset
255 },
21945
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
256
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
257 "TRUFFLE_DEBUG" : {
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
258 "path" : "build/truffle-debug.jar",
21951
9c8c0937da41 Moving all sources into truffle subdirectory
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21946
diff changeset
259 "subDir" : "truffle",
21945
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
260 "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
261 "javaCompliance" : "1.7",
21945
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
262 "dependencies" : [
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
263 "com.oracle.truffle.tools.debug.shell",
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
264 ],
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
265 "exclude" : ["JLINE"],
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
266 "distDependencies" : [
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
267 "TRUFFLE",
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
268 ],
179c3a0bac32 add TRUFFLE_DEBUG
Mick Jordan <mick.jordan@oracle.com>
parents: 21942
diff changeset
269 }
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
270 },
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
271 }