| commit | 70508fa46eba1d6cf32e8460ae9b86c5ff724d00 | [log] [tgz] |
|---|---|---|
| author | Peter Wen <wnwen@google.com> | Tue Jan 06 20:31:23 2026 |
| committer | Copybara-Service <copybara-worker@google.com> | Tue Jan 06 20:34:05 2026 |
| tree | 329ca581b1dedb286ceb5cb2bd3d4925666f55ed | |
| parent | 3d1946107b157bec07beef52b93fe3086667d356 [diff] |
android: Add quiet mode to JUnit tests This adds a `-q`/`--quiet` flag to the JUnit test runner to minimize output. When enabled, shard headers and prefixes are suppressed, and logs are only printed for failed tests. Additionally, quiet mode is automatically enabled for JUnit tests if the `GEMINI_CLI` environment variable is set to '1'. R=hnakashima@chromium.org Bug: 455845751 Change-Id: I88ebba2f211b13c6e61cba1a1ad36d235fa79f42 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7363019 Auto-Submit: Peter Wen <wnwen@chromium.org> Reviewed-by: Henrique Nakashima <hnakashima@chromium.org> Commit-Queue: Peter Wen <wnwen@chromium.org> Cr-Commit-Position: refs/heads/main@{#1565199} NOKEYCHECK=True GitOrigin-RevId: 80f08d7ca2061265e3a64a92f7de7d7151d89789
//build contains:
Since this directory is DEPS'ed in by some other repositories (webrtc, pdfium, v8, etc), it should be kept as self-contained as possible by not referring to files outside of it. Some exceptions exist (//testing, select //third_party subdirectories), but new dependencies tend to break these other projects, and so should be avoided.
Changes to //build should be landed in the Chromium repo. They will then be replicated to the stand-alone build repo by the gsubtreed tool. Note: You can find all directories already available through gsubtreed in the list of all chromium repos.
//build/config - Common templates via .gni files.//build/toolchain - GN toolchain definitions.Other .py files - Some are used by GN/Ninja. Some by gclient hooks, some are just random utilities.Files referenced by //.gn:
//build/BUILDCONFIG.gn - Included by all BUILD.gn files.//build/secondary - An overlay for BUILD.gn files. Enables adding BUILD.gn to directories that live in sub-repositories.//build_overrides - Refer to //build_overrides/README.md.