Name Date Size #Lines LOC

..--

backported_fixes/H25-Apr-2025-650445

ci/H25-Apr-2025-3,0672,265

common/H25-Apr-2025-669416

core/H25-Apr-2025-43,93129,618

packaging/H25-Apr-2025-8840

target/H25-Apr-2025-10,3056,175

teams/H25-Apr-2025-4,4113,154

tests/H25-Apr-2025-1,148907

tools/H25-Apr-2025-133,157103,868

.gitignoreH A D25-Apr-202542 76

Android.bpH A D25-Apr-20251.1 KiB3734

Changes.mdH A D25-Apr-202537.2 KiB971718

CleanSpec.mkH A D25-Apr-202539.3 KiB800435

Deprecation.mdH A D25-Apr-20253.4 KiB7058

OWNERSH A D25-Apr-2025276 85

PREUPLOAD.cfgH A D25-Apr-2025146 64

README.mdH A D25-Apr-20251 KiB2417

Usage.txtH A D25-Apr-20253.6 KiB8969

banchanHelp.shH A D25-Apr-20251.1 KiB3120

buildspec.mk.defaultH A D25-Apr-20254.3 KiB11599

envsetup.shH A D25-Apr-202535.8 KiB1,179900

help.shH A D25-Apr-20253 KiB7253

navbar.mdH A D25-Apr-2025116 54

rbesetup.shH A D25-Apr-20252.7 KiB7857

shell_utils.shH A D25-Apr-20256.3 KiB217163

tapasHelp.shH A D25-Apr-2025804 2415

README.md

1# Android Make Build System
2
3This is the Makefile-based portion of the Android Build System.
4
5For documentation on how to run a build, see [Usage.txt](Usage.txt)
6
7For a list of behavioral changes useful for Android.mk writers see
8[Changes.md](Changes.md)
9
10For an outdated reference on Android.mk files, see
11[build-system.html](/core/build-system.html). Our Android.mk files look similar,
12but are entirely different from the Android.mk files used by the NDK build
13system. When searching for documentation elsewhere, ensure that it is for the
14platform build system -- most are not.
15
16This Makefile-based system is in the process of being replaced with [Soong], a
17new build system written in Go. During the transition, all of these makefiles
18are read by [Kati], and generate a ninja file instead of being executed
19directly. That's combined with a ninja file read by Soong so that the build
20graph of the two systems can be combined and run as one.
21
22[Kati]: https://github.com/google/kati
23[Soong]: https://android.googlesource.com/platform/build/soong/+/master
24