|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| afdo_metadata/ | | 03-May-2024 | - | 60 | 53 |
| afdo_redaction/ | | 03-May-2024 | - | 918 | 652 |
| afdo_tools/ | | 03-May-2024 | - | 1,859 | 1,387 |
| bestflags/ | | 03-May-2024 | - | 3,761 | 2,344 |
| binary_search_tool/ | | 03-May-2024 | - | 9,025 | 6,129 |
| compiler_wrapper/ | | 03-May-2024 | - | 28,952 | 27,074 |
| cros_utils/ | | 03-May-2024 | - | 7,669 | 5,918 |
| crosperf/ | | 03-May-2024 | - | 19,946 | 16,023 |
| cwp/cr-os/ | | 03-May-2024 | - | 342 | 266 |
| debug_info_test/ | | 03-May-2024 | - | 478 | 321 |
| go/ | | 03-May-2024 | - | 5,923 | 5,142 |
| heatmaps/ | | 03-May-2024 | - | 1,308 | 954 |
| llvm_extra/ | | 03-May-2024 | - | 247 | 160 |
| llvm_tools/ | | 03-May-2024 | - | 15,247 | 11,399 |
| orderfile/ | | 03-May-2024 | - | 189 | 125 |
| pgo_tools/ | | 03-May-2024 | - | 650 | 500 |
| pgo_tools_rust/ | | 03-May-2024 | - | 653 | 527 |
| rust-analyzer-chromiumos-wrapper/ | | 03-May-2024 | - | 593 | 462 |
| rust_tools/ | | 03-May-2024 | - | 2,477 | 2,045 |
| seccomp_tools/mass_seccomp_editor/ | | 03-May-2024 | - | 326 | 264 |
| toolchain_utils_githooks/ | | 03-May-2024 | - | 1,621 | 1,223 |
| upstream_workon/ | | 03-May-2024 | - | 274 | 195 |
| .gitignore | D | 03-May-2024 | 118 | 7 | 6 |
| LICENSE | D | 03-May-2024 | 1.5 KiB | 28 | 27 |
| METADATA | D | 03-May-2024 | 602 | 20 | 18 |
| OWNERS | D | 03-May-2024 | 52 | 3 | 2 |
| OWNERS.toolchain | D | 03-May-2024 | 188 | 10 | 9 |
| PRESUBMIT.cfg | D | 03-May-2024 | 243 | 7 | 5 |
| README.chromium | D | 03-May-2024 | 673 | 18 | 15 |
| README.md | D | 03-May-2024 | 367 | 19 | 11 |
| android_merge_from_upstream.sh | D | 03-May-2024 | 2.3 KiB | 78 | 49 |
| auto_delete_nightly_test_data.py | D | 03-May-2024 | 11.5 KiB | 370 | 274 |
| build_chromeos.py | D | 03-May-2024 | 11.6 KiB | 378 | 310 |
| build_tc.py | D | 03-May-2024 | 12.9 KiB | 418 | 366 |
| buildbot_test_llvm.py | D | 03-May-2024 | 7.1 KiB | 219 | 156 |
| buildbot_test_toolchains.py | D | 03-May-2024 | 13.4 KiB | 408 | 333 |
| chromiumos_image_diff.py | D | 03-May-2024 | 13.4 KiB | 419 | 351 |
| compiler-test.sh | D | 03-May-2024 | 1.6 KiB | 59 | 27 |
| crate_ebuild_help.py | D | 03-May-2024 | 5.6 KiB | 178 | 131 |
| file_lock_machine.py | D | 03-May-2024 | 12.4 KiB | 424 | 346 |
| file_lock_machine_test.py | D | 03-May-2024 | 4.3 KiB | 129 | 97 |
| image_chromeos.py | D | 03-May-2024 | 18.6 KiB | 569 | 453 |
| lock_machine.py | D | 03-May-2024 | 18.8 KiB | 572 | 441 |
| make_root_writable.py | D | 03-May-2024 | 7.7 KiB | 262 | 188 |
| pyrun | D | 03-May-2024 | 107 | 7 | 3 |
| remote_test.py | D | 03-May-2024 | 2.9 KiB | 115 | 88 |
| run_tests_for.py | D | 03-May-2024 | 10.8 KiB | 347 | 246 |
| tc_enter_chroot.py | D | 03-May-2024 | 10.9 KiB | 350 | 290 |
| update_telemetry_defaults.py | D | 03-May-2024 | 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