It depends on the exact repository you checked. But for most of them, the following recipe will work:
http://source.android.com/source/download.html
Note. If you are using the latest build, you must have a 64-bit system
UPDATE. For some reason, the page above is missing some important steps. So here they are
After you have completed the βrepo syncβ step (it takes some time, but I assume that you did it because you have the source files), follow these steps:
$ . build/envsetup.sh $ lunch
The last command will provide you with a list of parameters for which you want to build the platform. If you want to create for the emulator, select full-eng. Otherwise, select it for the specific device vendor.
After choosing a platform, be sure to first make a full choice of everything, because the entire Android platform is very interdependent. Therefore, you need to make sure that you have all the components.
During development, you can quickly create individual components. Using the following command:
mmm <component_directory_name>
For example:
mmm external/rsync
In addition, the build system does not modify the source and intermediate files with the source code. Everything goes to the out / target directory.
Vlad
source share