• Home
Name Date Size #Lines LOC

..--

backported_fixes/04-Jul-2025-736517

ci/04-Jul-2025-3,1492,357

common/04-Jul-2025-680425

core/04-Jul-2025-43,99329,682

packaging/04-Jul-2025-14766

target/04-Jul-2025-10,6616,389

teams/04-Jul-2025-4,4243,163

tests/04-Jul-2025-1,148907

tools/04-Jul-2025-135,254104,765

.gitignoreD04-Jul-202542 76

Android.bpD04-Jul-20251.1 KiB3734

Changes.mdD04-Jul-202536.9 KiB965714

CleanSpec.mkD04-Jul-202539.3 KiB800435

Deprecation.mdD04-Jul-20253.4 KiB7058

OWNERSD04-Jul-2025276 85

PREUPLOAD.cfgD04-Jul-2025146 64

README.mdD04-Jul-20251 KiB2417

Usage.txtD04-Jul-20253.6 KiB8969

banchanHelp.shD04-Jul-20251.1 KiB3120

buildspec.mk.defaultD04-Jul-20254.3 KiB11599

envsetup.shD04-Jul-202534.1 KiB1,117851

help.shD04-Jul-20253 KiB7253

navbar.mdD04-Jul-2025116 54

rbesetup.shD04-Jul-20252.7 KiB7857

shell_utils.shD04-Jul-20256.9 KiB236177

tapasHelp.shD04-Jul-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