0
Files
src/build
Theresa 1112da63ef Revert "Android: Re-enable androidx custom lint checks"
This reverts commit 12e8b3bc48.

Reason for revert: Suspected of breaking downstream compilation

Original change's description:
> Android: Re-enable androidx custom lint checks
>
> Androidx custom lint checks were disabled due to using newer APIs than
> the lint version we were using allowed. Now that we have updated to lint
> version 7.0.0, these checks are working again.
>
> The new --remove-fixed flag is also turned on in lint.py so that
> baseline.xml files do not keep growing but get trimmed when fixes are
> merged.
>
> Bug: 1225326, 1111416
> Fixed: 1225326
> Change-Id: I6b82c27a5b3f717137cdb5285718050b1ae532c6
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3200345
> Commit-Queue: Peter Wen <wnwen@chromium.org>
> Reviewed-by: Mohamed Heikal <mheikal@chromium.org>
> Cr-Commit-Position: refs/heads/main@{#927831}

Bug: 1225326, 1111416, 1256477
Change-Id: I940f6e831f5bd2e6c528289f3d07330b03f60388
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3203528
Auto-Submit: Theresa  <twellington@chromium.org>
Owners-Override: Theresa  <twellington@chromium.org>
Commit-Queue: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Cr-Commit-Position: refs/heads/main@{#927899}
2021-10-04 23:20:28 +00:00
..
2021-10-04 18:06:29 +00:00
2021-08-09 22:07:59 +00:00

About

//build contains:

  • Core GN templates and configuration
  • Core Python build scripts

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.

Contents

  • //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.

Docs