commit | 4334bbf45e3f90090706df60f6457afe4ae45469 | [log] [tgz] |
---|---|---|
author | Peter Wen <wnwen@chromium.org> | Wed Jun 18 18:55:40 2025 |
committer | Copybara-Service <copybara-worker@google.com> | Wed Jun 18 19:01:44 2025 |
tree | 058d3a2f072bf55cf7cd9931335ab2f09d6072e5 | |
parent | 6874aa032b891d5490d41d059c724275dade0884 [diff] |
[android] Update minimum supported OS version to 10 Chrome currently supports Android Oreo and Pie, but as of this CL, a UI will be presented to users running on Android Oreo and Android Pie. Whether this message is shown or not is possible override from a server side configuration. Bug: 425948259 Change-Id: I9de32db032f7113788eef12b9f701f911f17c53d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6598935 Auto-Submit: Peter Wen <wnwen@chromium.org> Commit-Queue: Henrique Nakashima <hnakashima@chromium.org> Commit-Queue: Peter Wen <wnwen@chromium.org> Reviewed-by: Henrique Nakashima <hnakashima@chromium.org> Reviewed-by: Tommy Nyquist <nyquist@chromium.org> Cr-Commit-Position: refs/heads/main@{#1475756} NOKEYCHECK=True GitOrigin-RevId: 1d7f198c95b4140cfc729a1d448cabb4efaafbab
//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.