forked from Moddable-OpenSource/moddable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest_base.json
86 lines (86 loc) · 1.51 KB
/
manifest_base.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"build": {
"BUILD": "$(MODDABLE)/build",
"MODULES": "$(MODDABLE)/modules",
"COMMODETTO": "$(MODULES)/commodetto",
"PIU": "$(MODULES)/piu",
},
"creation": {
"static": 32768,
"chunk": {
"initial": 1536,
"incremental": 512,
},
"heap": {
"initial": 512,
"incremental": 64,
},
"stack": 256,
"keys": {
"available": 32,
"name": 53,
"symbol": 3,
},
"parser": {
"buffer": 1024,
"table": 17,
},
"main": "main",
},
"modules": {
"*": [
"$(MODULES)/files/resource/*",
"$(MODULES)/base/instrumentation/*",
],
},
"preload": [
"Resource",
"instrumentation",
],
"strip": "*",
"platforms": {
"esp": {
"include": "$(BUILD)/devices/esp/manifest.json"
},
"esp32": {
"include": "$(BUILD)/devices/esp32/manifest.json"
},
"gecko": {
"include": "$(BUILD)/devices/gecko/manifest.json"
},
"qca4020": {
"include": "$(BUILD)/devices/qca4020/manifest.json"
},
"lin": {
"modules": {
"*": [
"$(BUILD)/simulator/screen",
"$(MODULES)/base/timer/timer",
"$(MODULES)/base/timer/lin/*",
]
}
},
"mac": {
"modules": {
"*": [
"$(BUILD)/simulator/screen",
"$(MODULES)/base/time/*",
"$(MODULES)/base/time/mac/*",
"$(MODULES)/base/timer/*",
"$(MODULES)/base/timer/mac/*",
],
},
},
"win": {
"modules": {
"*": [
"$(BUILD)/simulator/screen",
"$(MODULES)/base/time/*",
"$(MODULES)/base/time/win/*",
"$(MODULES)/base/timer/*",
"$(MODULES)/base/timer/win/*"
]
}
}
},
}