发现一个写得很简洁的 AOSP 的 build system 的介绍,很适合初学Android 的同学。 英文的 http://www.jayway.com/2012/10/24/a-practical-approach-to-the-aosp-build-system/
原文拷贝如下。
October 24th, 2012 by Tomas Nilsson - Android, Embedded
The Android open-source project (AOSP) is quite complex and it can be hard to find a good way to get more familiar with it. I’m going to try a practical approach, by adding an Android application to the system image, while at the same time describing the relevant parts of the build process. As you might already know, the Android source is built using make, and this blog post assumes some knowledge in how to write makefiles.
If you want to follow this guide, start by setting up the development environment according to the AOSP web site:
http://source.android.com/source/index.html
After setting up the environment, finish a full build for the emulator (replacing -j5 with a value suitable for your computer):
1 2 3 |
source build/envsetup.sh
lunch 1
make -j5
|
Now, lets have a look at the steps involved.
When building, you usually start with sourcing the file build/envsetup.sh to setup your build environment. It basically adds a lot of shell commands to your bash environment, e.g:
hmm()
– print short help menulunch()
– prints lunch menu (available build targets)add_lunch_combo()
– adds a new entry to the lunch menumm()
- Builds all of the modules in the current directoryIt also sources any vendorsetup.sh files found under vendor/*/vendorsetup.sh, vendor/*/*/vendorsetup.sh and device/*/*/vendorsetup.sh, which allows vendors to add their own products to the lunch menu using the add_lunch_combo function. An example of the a vendorsetup.sh is the Samsung Maguro product directory (device/samsung/maguro):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#
# Copyright (C) 2011 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
add_lunch_combo full_maguro-userdebug
|
You can try calling one of the commands after sourcing envsetup.sh:
1 |
hmm
|
Next thing is to select target using the lunch menu, which was added to your bash shell environment after sourcing envsetup.sh. After making your selection, the chosen product and variant is verified and environment variables are set, including:
export TARGET_PRODUCT=$product
– The chosen productexport TARGET_BUILD_VARIANT=$variant
– The chosen variantexport TARGET_BUILD_TYPE=release
– Only release type is available. Use choosecombo if you want to select type.export ANDROID_BUILD_TOP=$(gettop)
– The build root directory.export ANDROID_TOOLCHAIN=...
– The toolchain directory for the prebuilt cross-compiler matching the target architectureexport PATH=...
– Among other stuff, the prebuilt toolchain is added to PATH.export ANDROID_PRODUCT_OUT=...
– Absolute path to the target product out directoryexport ANDROID_HOST_OUT=...
– Absolute path to the host out directoryCheck out some of the variables by typing:
1 |
echo
$ANDROID_BUILD_TOP
|
You previously finished a platform build by running the following commands:
1 2 3 |
source build/envsetup.sh
lunch 1
make -j5
|
Depending on the type of build you selected, the result can be varying. However, a typical build results in the following images:
boot.img
– Native system boot image.ramdisk.img
– Ramdisk rootfs
.recovery.img
– Recovery image.ramdisk-recovery.img
– Ramdisk rootfs
for Recovery.system.img
– System data (/system
directory)userdata.img
– User data (/data
directory)These images is what makes up the Android system, with one exception. The Android kernel is not a part of the AOSP, and must be built separately. We will get back to this later…
Now, in order to dig a little deeper into the build system, navigate to the Music application in packages/apps/Music and build it using mm:
1 2 |
cd
$ANDROID_BUILD_TOP/packages/apps/Music
mm
|
The main makefile for this module is called Android.mk and is located in $ANDROID_BUILD_TOP/packages/apps/Music:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
LOCAL_PATH
:=
$(call my-dir
)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS
:= optional
LOCAL_SRC_FILES
:=
$(call all-java-files-under, src
)
\
src/com/android/music/IMediaPlaybackService.aidl
LOCAL_PACKAGE_NAME
:= Music
LOCAL_SDK_VERSION
:= current
LOCAL_PROGUARD_FLAG_FILES
:= proguard.flags
include $(BUILD_PACKAGE)
# Use the folloing include to make our test apk.
include $(call all-makefiles-under,$(LOCAL_PATH))
|
The make file sets a few module specific build variables and includes the BUILD_PACKAGE variable to tell make how to build this particular module. The BUILD_PACKAGE variable is defined in a file called config.mk located at $ANDROID_BUILD_TOP/build/core/config.mk. Lets have a look at the relevant parts of it:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
...
# ###############################################################
# Build system internal files
# ###############################################################
BUILD_COMBOS
:=
$(BUILD_SYSTEM
)/combo
CLEAR_VARS
:=
$(BUILD_SYSTEM
)/clear_vars.mk
BUILD_HOST_STATIC_LIBRARY
:=
$(BUILD_SYSTEM
)/host_static_library.mk
BUILD_HOST_SHARED_LIBRARY
:=
$(BUILD_SYSTEM
)/host_shared_library.mk
BUILD_STATIC_LIBRARY
:=
$(BUILD_SYSTEM
)/static_library.mk
BUILD_RAW_STATIC_LIBRARY
:=
$(BUILD_SYSTEM
)/raw_static_library.mk
BUILD_SHARED_LIBRARY
:=
$(BUILD_SYSTEM
)/shared_library.mk
BUILD_EXECUTABLE
:=
$(BUILD_SYSTEM
)/executable.mk
BUILD_RAW_EXECUTABLE
:=
$(BUILD_SYSTEM
)/raw_executable.mk
BUILD_HOST_EXECUTABLE
:=
$(BUILD_SYSTEM
)/host_executable.mk
BUILD_PACKAGE
:=
$(BUILD_SYSTEM
)/package.mk
BUILD_PHONY_PACKAGE
:=
$(BUILD_SYSTEM
)/phony_package.mk
BUILD_HOST_PREBUILT
:=
$(BUILD_SYSTEM
)/host_prebuilt.mk
BUILD_PREBUILT
:=
$(BUILD_SYSTEM
)/prebuilt.mk
BUILD_MULTI_PREBUILT
:=
$(BUILD_SYSTEM
)/multi_prebuilt.mk
BUILD_JAVA_LIBRARY
:=
$(BUILD_SYSTEM
)/java_library.mk
BUILD_STATIC_JAVA_LIBRARY
:=
$(BUILD_SYSTEM
)/static_java_library.mk
BUILD_HOST_JAVA_LIBRARY
:=
$(BUILD_SYSTEM
)/host_java_library.mk
BUILD_DROIDDOC
:=
$(BUILD_SYSTEM
)/droiddoc.mk
BUILD_COPY_HEADERS
:=
$(BUILD_SYSTEM
)/copy_headers.mk
BUILD_NATIVE_TEST
:=
$(BUILD_SYSTEM
)/native_test.mk
BUILD_HOST_NATIVE_TEST
:=
$(BUILD_SYSTEM
)/host_native_test.mk
...
|
As you can see, there are several build variables defined in this file. They basically references a separate make file which handles that particular type of build. For example, the BUILD_PACKAGE variable refers to the file $ANDROID_BUILD_TOP/build/core/package.mk. Other build notable build variables are:
CLEAR_VARS
– Includes the file $ANDROID_BUILD_TOP/build/core/clear_vars.mk. Clears all LOCAL_* variables (with the exeption of LOCAL_PATH) to ensure that any previously built modules does not affect the current module.BUILD_PACKAGE
- Includes the file $ANDROID_BUILD_TOP/build/core/package.mk. Defines how packages (*.apk) are built. The build is controlled by setting LOCAL_* variables as seen in the Music application example above.BUILD_PREBUILT
- Includes the file $ANDROID_BUILD_TOP/build/core/prebuilt.mk. Defines how pre-built modules should be handled, e.g. a pre-compiled jar file.BUILD_JAVA_LIBRARY
- Includes the file $ANDROID_BUILD_TOP/build/core/java_library.mk. Defines how shared java libraries should be built.BUILD_STATIC_JAVA_LIBRARY
- Includes the file $ANDROID_BUILD_TOP/build/core/static_java_library.mk. Defines how static java libraries should be built. Includes java_library.mk as well.How does the build system know what to build? The answer to this question is fairly complex and involves lots of build files, but a very simplistic view of the process can be seen in the image below. Most of the involved files have been abstracted away to get a feeling for how a build is triggered.
When invoking make
in the build root after setting up the environment (sourcing envsetup.sh and calling lunch), make finds the default Makefile in the build root, which in turn includes the main makefile in build/core/main.mk. The main makefile includes lots of other makefiles based on what make target. Assuming the default target, three of the more important ones are highlighted in the image below: config.mk, definitions.mk and Makefile.
Short description of what the different makefiles actually do:
main.mk
config.mk
definitions.mk
Makefile
As described earlier, each module defines its own Android.mk file, specifying the type of module by calling the correct build file for that module, e.g. $(BUILD_PACKAGE) for building an APK.