Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
afdo_metadata/ | 03-May-2024 | - | 51 | 45 | ||
afdo_redaction/ | 03-May-2024 | - | 860 | 596 | ||
afdo_tools/ | 03-May-2024 | - | 1,527 | 1,091 | ||
android_bench_suite/ | 03-May-2024 | - | 68,867 | 65,116 | ||
bestflags/ | 03-May-2024 | - | 3,600 | 2,195 | ||
binary_search_tool/ | 03-May-2024 | - | 8,517 | 5,639 | ||
compiler_wrapper/ | 03-May-2024 | - | 25,755 | 24,249 | ||
cros_utils/ | 03-May-2024 | - | 7,020 | 5,302 | ||
crosperf/ | 03-May-2024 | - | 17,456 | 13,627 | ||
cwp/cr-os/ | 03-May-2024 | - | 313 | 236 | ||
debug_info_test/ | 03-May-2024 | - | 473 | 318 | ||
go/ | 03-May-2024 | - | 5,893 | 5,112 | ||
heatmaps/ | 03-May-2024 | - | 1,199 | 843 | ||
llvm_extra/ | 03-May-2024 | - | 248 | 161 | ||
llvm_tools/ | 03-May-2024 | - | 11,715 | 7,594 | ||
orderfile/ | 03-May-2024 | - | 187 | 123 | ||
pgo_tools/ | 03-May-2024 | - | 628 | 476 | ||
rust_tools/ | 03-May-2024 | - | 1,685 | 1,362 | ||
toolchain_utils_githooks/ | 03-May-2024 | - | 1,339 | 963 | ||
.gitignore | D | 03-May-2024 | 77 | 6 | 5 | |
.style.yapf | D | 03-May-2024 | 76 | 4 | 3 | |
LICENSE | D | 03-May-2024 | 1.5 KiB | 28 | 27 | |
METADATA | D | 03-May-2024 | 39 | 4 | 3 | |
OWNERS | D | 03-May-2024 | 38 | 3 | 2 | |
OWNERS.android | D | 03-May-2024 | 56 | 2 | 1 | |
OWNERS.toolchain | D | 03-May-2024 | 256 | 13 | 11 | |
PRESUBMIT.cfg | D | 03-May-2024 | 106 | 3 | 2 | |
README.chromium | D | 03-May-2024 | 676 | 18 | 15 | |
README.md | D | 03-May-2024 | 368 | 19 | 11 | |
android_merge_from_upstream.sh | D | 03-May-2024 | 2.2 KiB | 75 | 49 | |
auto_delete_nightly_test_data.py | D | 03-May-2024 | 9.1 KiB | 270 | 198 | |
build_chromeos.py | D | 03-May-2024 | 10.3 KiB | 290 | 222 | |
build_tc.py | D | 03-May-2024 | 11.7 KiB | 355 | 303 | |
buildbot_test_llvm.py | D | 03-May-2024 | 6.7 KiB | 201 | 138 | |
buildbot_test_toolchains.py | D | 03-May-2024 | 12.9 KiB | 384 | 307 | |
chromiumos_image_diff.py | D | 03-May-2024 | 11.7 KiB | 368 | 300 | |
compiler-test.sh | D | 03-May-2024 | 1.7 KiB | 62 | 27 | |
file_lock_machine.py | D | 03-May-2024 | 10.7 KiB | 390 | 314 | |
file_lock_machine_test.py | D | 03-May-2024 | 4 KiB | 128 | 96 | |
image_chromeos.py | D | 03-May-2024 | 16.8 KiB | 493 | 378 | |
lock_machine.py | D | 03-May-2024 | 16.9 KiB | 530 | 401 | |
pyrun | D | 03-May-2024 | 107 | 7 | 3 | |
remote_test.py | D | 03-May-2024 | 2.8 KiB | 107 | 80 | |
run_tests_for.py | D | 03-May-2024 | 8.2 KiB | 276 | 190 | |
setup_chromeos.py | D | 03-May-2024 | 8.4 KiB | 253 | 208 | |
tc_enter_chroot.py | D | 03-May-2024 | 10.1 KiB | 310 | 250 | |
unblocked_terms.txt | D | 03-May-2024 | 113 | 6 | 4 | |
update_telemetry_defaults.py | D | 03-May-2024 | 6.5 KiB | 205 | 161 |
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 Chromium OS; building 11custom versions of the toolchain inside Chromium OS; 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 Chromium OS). 18
README.md
1# `toolchain-utils` 2 3Various utilities used by the Chrome OS 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