-
Notifications
You must be signed in to change notification settings - Fork 0
/
pigweed.json
83 lines (83 loc) · 2.26 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
78
79
80
81
82
83
{
"pw": {
"bazel_presubmit": {
"remote_cache": true,
"upload_local_results": true,
"programs": {
"default": [
[
"build",
"--config=presubmit"
]
]
}
},
"pw_cli": {
"plugins": {
"build": {
"module": "sample_project_tools.build_project",
"function": "build_project"
},
"watch": {
"module": "sample_project_tools.build_project",
"function": "watch_project"
},
"flash": {
"module": "sample_project_tools.flash_device",
"function": "main"
},
"presubmit": {
"module": "sample_project_tools.presubmit_checks",
"function": "main"
},
"heap-viewer": {
"module": "pw_allocator.heap_viewer",
"function": "main"
},
"rpc": {
"module": "pw_system.console",
"function": "main"
},
"package": {
"module": "pw_package.pigweed_packages",
"function": "main"
}
}
},
"pw_presubmit": {
"format": {
"python_formatter": "black",
"exclude": [
"^patches\\.json$"
]
}
},
"pw_env_setup": {
"root_variable": "SAMPLE_PROJECT_ROOT",
"relative_pigweed_root": "third_party/pigweed",
"cipd_package_files": [
"third_party/pigweed/pw_env_setup/py/pw_env_setup/cipd_setup/bazel.json",
"third_party/pigweed/pw_env_setup/py/pw_env_setup/cipd_setup/cmake.json",
"third_party/pigweed/pw_env_setup/py/pw_env_setup/cipd_setup/default.json",
"third_party/pigweed/pw_env_setup/py/pw_env_setup/cipd_setup/kythe.json"
],
"virtualenv": {
"gn_root": ".",
"gn_targets": [
":pip_install_sample_project_tools.install"
]
},
"required_submodules": [
"third_party/FreeRTOS",
"third_party/nanopb",
"third_party/pico_sdk",
"third_party/pico_sdk/lib/tinyusb",
"third_party/pigweed",
"third_party/stm32cube_f4/cmsis_core",
"third_party/stm32cube_f4/cmsis_device",
"third_party/stm32cube_f4/hal_driver"
],
"gni_file": "build_overrides/pigweed_environment.gni"
}
}
}