views:

150

answers:

2

Having checked out the froyo code I can successfully build froyo, but what I really want is only building libwebcore.so, is there a special target for this?

Just make -f Android.mk in external/webkit isn't working for the obvious reasons.

A: 

make libwebcore seems to do the trick

anselm
+1  A: 

Assuming you've sourced build/envsetup.sh and "lunched" appropriately...

Approach #1:

% mmm external/webkit

Approach #2

% cd external/webkit
% mm

Approach #3:

% make libwebcore

-or-

% make libwebcore libjs

depending on which javascript engine you have configured.

fadden