| commit | a1fa4ffa99c3f07ff8ccacf212f5f79ed617fca2 | [log] [tgz] |
|---|---|---|
| author | Lei Zhang <[email protected]> | Sat Dec 13 02:09:59 2025 |
| committer | Copybara-Service <[email protected]> | Sat Dec 13 02:16:57 2025 |
| tree | 5f8f8bf403f03f9e9fc26f6294dd1b44819beebe | |
| parent | 3dc5a1fde00b427904bfe86cc46ca47cfd737554 [diff] |
Remove superfluous base/gtest_prod_util.h includes from headers Remove unnecessary includes. Removal mostly automated with: git ls-files | grep '\.h$' | xargs grep -l base/gtest_prod_util.h | \ xargs grep -L FRIEND_TEST | xargs grep -L FORWARD_DECLARE_TEST | \ xargs ./tools/add_header.py --remove --header '"base/gtest_prod_util.h"' Bug: 40318405 Change-Id: Ie998958f1622dd7bc6a7bfafd7dd6f737abbc909 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7240634 Reviewed-by: Mark Mentovai <[email protected]> Owners-Override: Mark Mentovai <[email protected]> Commit-Queue: Lei Zhang <[email protected]> Cr-Commit-Position: refs/heads/main@{#1558386} NOKEYCHECK=True GitOrigin-RevId: 11f52558c4f05e1ca0f0de7dd87e413fc395d9ea
Contains a written down set of principles and other information on //base. Please add to it!
Chromium is a very mature project. Most things that are generally useful are already here and things not here aren't generally useful.
The bar for adding stuff to base is that it must have demonstrated wide applicability. Prefer to add things closer to where they're used (i.e. “not base”), and pull into base only when needed. In a project our size, sometimes even duplication is OK and inevitable.
Adding a new logging macro DPVELOG_NE is not more clear than just writing the stuff you want to log in a regular logging statement, even if it makes your calling code longer. Just add it to your own code.
If the code in question does not need to be used inside base, but will have multiple consumers across the codebase, consider placing it in a new directory under components/ instead.
base is written for the Chromium project and is not intended to be used outside it. Using base outside of src.git is explicitly not supported, and base makes no guarantees about API (or even ABI) stability (like all other code in Chromium). New code that depends on base/ must be in src.git. Code that's not in src.git but pulled in through DEPS (for example, v8) cannot use base.
Owners are added when a contributor has shown the above qualifications and when they express interest. There isn't an upper bound on the number of OWNERS.
Since the primitives provided by //base are used very widely, it is important to ensure they scale to the necessary workloads and perform well under all supported platforms. The base_perftests target is a suite of synthetic microbenchmarks that measure performance in various scenarios:
thread_local, the implementation in //base, the POSIX/WinAPI directly)Regressions in these benchmarks can generally by caused by 1) operating system changes, 2) compiler version or flag changes or 3) changes in //base code itself.