forked from google/pigweed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpigweed.json
77 lines (77 loc) · 1.94 KB
/
pigweed.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
{
"pw": {
"pw_presubmit": {
"format": {
"python_formatter": "black",
"black_config_file": "$pw_env{PW_ROOT}/.black.toml",
"exclude": [
"\\bthird_party/fuchsia/repo"
]
}
},
"pw_cli": {
"plugins": {
"console": {
"module": "pw_console.__main__",
"function": "main"
},
"format": {
"module": "pw_presubmit.format_code",
"function": "main"
},
"heap-viewer": {
"module": "pw_allocator.heap_viewer",
"function": "main"
},
"ide": {
"module": "pw_ide.__main__",
"function": "main"
},
"package": {
"module": "pw_package.pigweed_packages",
"function": "main"
},
"presubmit": {
"module": "pw_presubmit.pigweed_presubmit",
"function": "main"
},
"requires": {
"module": "pw_cli.requires",
"function": "main"
},
"rpc": {
"module": "pw_hdlc.rpc_console",
"function": "main"
},
"update": {
"module": "pw_software_update.cli",
"function": "main"
}
}
},
"pw_env_setup": {
"root_variable": "PW_ROOT",
"rosetta": "allow",
"gni_file": "build_overrides/pigweed_environment.gni",
"cipd_package_files": [
"pw_env_setup/py/pw_env_setup/cipd_setup/upstream.json"
],
"virtualenv": {
"gn_targets": ["python.install"],
"gn_root": ".",
"requirements": [
"pw_env_setup/py/pw_env_setup/virtualenv_setup/pigweed_upstream_requirements.txt"
],
"constraints": [
"pw_env_setup/py/pw_env_setup/virtualenv_setup/constraint.list"
]
}
},
"pw_package": {
"allow_middleware_only_packages": true
},
"pw_doctor": {
"new_bug_url": "https://issues.pigweed.dev/new"
}
}
}