web-dev-qa-db-ja.com

Androidソースコードで特定のモジュールを構築する

Source.Android.comからダウンロードしたAndroidソースコードに取り組んでいます。

完全なビルドの後、このサイトを経由しました http://elinux.org/Android_Build_System Android build system。

External/webkitコードを変更してビルドするとき

make -j4 libwebcore対応するファイルをコンパイルしてlibwebcore.soを更新し、時間を大幅に節約します。同じことは、アプリケーションにもAPKの構築にも適用されます。

問題は、フレームワークを変更し、コマンドをmake -j4 framework対応するファイルをコンパイルしていません。誰でも私を助けることができます!

28
dead programmer

mmmmm、およびbuild/envsetup.shファイル:

呼び出し. build/envsetup.shシェルから、次の関数を環境に追加します。

   lunch:   lunch <product_name>-<build_variant>
   tapas:   tapas [<App1> <App2> ...] [arm|x86|mips|armv5] [eng|userdebug|user]
   croot:   Changes directory to the top of the tree.
   m:       Makes from the top of the tree.
   mm:      Builds all of the modules in the current directory, but not their dependencies.
   mmm:     Builds all of the modules in the supplied directories, but not their dependencies.
            To limit the modules being built use the syntax: mmm dir/:target1,target2.
   mma:     Builds all of the modules in the current directory, and their dependencies.
   mmma:    Builds all of the modules in the supplied directories, and their dependencies.
   cgrep:   Greps on all local C/C++ files.
   jgrep:   Greps on all local Java files.
   resgrep: Greps on all local res/*.xml files.
   godir:   Go to the directory containing a file.

Pleseチェックbuild/envsetup.shファイルのコメントは、関数の完全なリストを表示します。

29
Wonil