|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| afdo_metadata/ | H | 25-Apr-2025 | - | 55 | 50 |
| afdo_redaction/ | H | 25-Apr-2025 | - | 918 | 652 |
| afdo_tools/ | H | 25-Apr-2025 | - | 2,615 | 2,006 |
| bestflags/ | H | 25-Apr-2025 | - | 3,761 | 2,344 |
| binary_search_tool/ | H | 25-Apr-2025 | - | 9,025 | 6,129 |
| compiler_wrapper/ | H | 25-Apr-2025 | - | 28,776 | 26,855 |
| contrib/ | H | 25-Apr-2025 | - | 151 | 108 |
| cros_utils/ | H | 25-Apr-2025 | - | 6,690 | 5,176 |
| crosperf/ | H | 25-Apr-2025 | - | 20,080 | 16,154 |
| cwp/cr-os/ | H | 25-Apr-2025 | - | 342 | 266 |
| debug_info_test/ | H | 25-Apr-2025 | - | 478 | 321 |
| go/ | H | 25-Apr-2025 | - | 5,923 | 5,142 |
| llvm_extra/ | H | 25-Apr-2025 | - | 247 | 160 |
| llvm_tools/ | H | 25-Apr-2025 | - | 19,973 | 15,404 |
| pgo_tools/ | H | 25-Apr-2025 | - | 1,811 | 1,359 |
| pgo_tools_rust/ | H | 25-Apr-2025 | - | 680 | 550 |
| rust-analyzer-chromiumos-wrapper/ | H | 25-Apr-2025 | - | 826 | 658 |
| rust_tools/ | H | 25-Apr-2025 | - | 4,249 | 3,423 |
| seccomp_tools/mass_seccomp_editor/ | H | 25-Apr-2025 | - | 326 | 264 |
| toolchain_utils_githooks/ | H | 25-Apr-2025 | - | 2,195 | 1,685 |
| upstream_workon/ | H | 25-Apr-2025 | - | 274 | 195 |
| .gitignore | H A D | 25-Apr-2025 | 146 | 8 | 7 |
| DIR_METADATA | H A D | 25-Apr-2025 | 724 | 22 | 18 |
| LICENSE | H A D | 25-Apr-2025 | 1.5 KiB | 28 | 27 |
| METADATA | H A D | 25-Apr-2025 | 600 | 20 | 18 |
| OWNERS | H A D | 25-Apr-2025 | 52 | 3 | 2 |
| OWNERS.toolchain | H A D | 25-Apr-2025 | 145 | 8 | 7 |
| PRESUBMIT.cfg | H A D | 25-Apr-2025 | 243 | 7 | 5 |
| README.chromium | H A D | 25-Apr-2025 | 673 | 18 | 15 |
| README.md | H A D | 25-Apr-2025 | 367 | 19 | 11 |
| android_merge_from_upstream.sh | H A D | 25-Apr-2025 | 2.3 KiB | 78 | 49 |
| auto_abandon_cls.py | H A D | 25-Apr-2025 | 3.2 KiB | 117 | 90 |
| build_chromeos.py | H A D | 25-Apr-2025 | 11.6 KiB | 378 | 310 |
| build_tc.py | H A D | 25-Apr-2025 | 12.9 KiB | 418 | 366 |
| buildbot_test_toolchains.py | H A D | 25-Apr-2025 | 14 KiB | 428 | 352 |
| check_portable_toolchains.py | H A D | 25-Apr-2025 | 6.4 KiB | 225 | 181 |
| chromiumos_image_diff.py | H A D | 25-Apr-2025 | 13.4 KiB | 419 | 351 |
| compiler-test.sh | H A D | 25-Apr-2025 | 1.6 KiB | 59 | 27 |
| crate_ebuild_help.py | H A D | 25-Apr-2025 | 5.6 KiB | 178 | 131 |
| image_chromeos.py | H A D | 25-Apr-2025 | 18.1 KiB | 563 | 452 |
| lock_machine.py | H A D | 25-Apr-2025 | 18.8 KiB | 572 | 441 |
| make_root_writable.py | H A D | 25-Apr-2025 | 7.7 KiB | 262 | 188 |
| pyrun | H A D | 25-Apr-2025 | 107 | 7 | 3 |
| remote_test.py | H A D | 25-Apr-2025 | 2.9 KiB | 115 | 88 |
| run_tests_for.py | H A D | 25-Apr-2025 | 10.9 KiB | 345 | 244 |
| tc_enter_chroot.py | H A D | 25-Apr-2025 | 10.9 KiB | 350 | 290 |
| update_telemetry_defaults.py | H A D | 25-Apr-2025 | 7.2 KiB | 209 | 164 |
README.chromium
1Name: toolchain-utils
2Short Name: toolchain-utils
3URL: https://chromium.googlesource.com/chromiumos/third_party/toolchain-utils
4License: BSD
5License File: LICENSE
6Security Critical: no
7
8Description:
9This contains scripts used to help maintain the toolchain. These
10include tools for downloading and building ChromiumOS; building
11custom versions of the toolchain inside ChromiumOS; launching
12performance tests, analyzing the results and generating reports;
13running toolchain regression tests; and using binary search to isolate
14toolchain issues.
15
16NOTE: These tools are strictly for Chromium developers; none of them
17ship on the final product (devices that run ChromiumOS).
18
README.md
1# `toolchain-utils`
2
3Various utilities used by the ChromeOS toolchain team.
4
5## Note
6
7To run Python scripts in this directory, first run:
8
9```
10export PYTHONPATH=$(readlink -f .):$PYTHONPATH
11```
12
13from this directory.
14
15Then you can run any script.
16
17To get help on any script, type in `python <script> --help`, or refer to the
18header of the script for more information.
19