OSDN Git Service

Merge "Merge WebKit at Chromium 9.0.597.76: Update WebKit revision number" into honeycomb
[android-x86/external-webkit.git] / Android.mk
1 ##
2 ## Copyright 2009, The Android Open Source Project
3 ##
4 ## Redistribution and use in source and binary forms, with or without
5 ## modification, are permitted provided that the following conditions
6 ## are met:
7 ##  * Redistributions of source code must retain the above copyright
8 ##    notice, this list of conditions and the following disclaimer.
9 ##  * Redistributions in binary form must reproduce the above copyright
10 ##    notice, this list of conditions and the following disclaimer in the
11 ##    documentation and/or other materials provided with the distribution.
12 ##
13 ## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
14 ## EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 ## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 ## PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
17 ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 ## EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 ## PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 ## PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 ## OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 ## (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 ## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 ##
25
26 LOCAL_PATH := $(call my-dir)
27
28 # Control SVG compiling in webkit.
29 # Default is true unless explictly disabled.
30 ifneq ($(ENABLE_SVG),false)
31     ENABLE_SVG = true
32 endif
33
34 # Control complex scripts support compiling in webkit.
35 # Default is true unless explictly disabled.
36 ifneq ($(SUPPORT_COMPLEX_SCRIPTS),false)
37     SUPPORT_COMPLEX_SCRIPTS = true
38 endif
39
40 # Two ways to control which JS engine is used:
41 # 1. use JS_ENGINE environment variable, value can be either 'jsc' or 'v8'
42 #    This is the preferred way.
43 # 2. if JS_ENGINE is not set, or is not 'jsc' or 'v8', this makefile picks
44 #    up a default engine to build.
45 #    To help setup buildbot, a new environment variable, USE_ALT_JS_ENGINE,
46 #    can be set to true, so that two builds can be different but without
47 #    specifying which JS engine to use.
48 # To enable JIT in Android's JSC, please set ENABLE_JSC_JIT environment
49 # variable to true.
50
51 # To enable JIT in Android's JSC, please set ENABLE_JSC_JIT environment
52 # variable to true.
53
54 # Read JS_ENGINE environment variable
55 JAVASCRIPT_ENGINE = $(JS_ENGINE)
56
57 # We default to the V8 JS engine.
58 DEFAULT_ENGINE = v8
59 ALT_ENGINE = jsc
60
61 ifneq ($(JAVASCRIPT_ENGINE),jsc)
62   ifneq ($(JAVASCRIPT_ENGINE),v8)
63     # No JS engine is specified, pickup the one we want as default.
64     ifeq ($(USE_ALT_JS_ENGINE),true)
65       JAVASCRIPT_ENGINE = $(ALT_ENGINE)
66     else
67       JAVASCRIPT_ENGINE = $(DEFAULT_ENGINE)
68     endif
69   endif
70 endif
71 # We can't use V8 on the simulator
72 ifeq ($(TARGET_SIMULATOR),true)
73   JAVASCRIPT_ENGINE = jsc
74 endif
75
76 # V8 also requires an ARMv7 CPU, and since we must use jsc, we cannot
77 # use the Chrome http stack either.
78 ifneq ($(strip $(ARCH_ARM_HAVE_ARMV7A)),true)
79   JAVASCRIPT_ENGINE := jsc
80   USE_ALT_HTTP := true
81 endif
82
83 # See if the user has specified a stack they want to use
84 HTTP_STACK = $(HTTP)
85 # We default to the Chrome HTTP stack.
86 DEFAULT_HTTP = chrome
87 ALT_HTTP = android
88
89 ifneq ($(HTTP_STACK),chrome)
90   ifneq ($(HTTP_STACK),android)
91     # No HTTP stack is specified, pickup the one we want as default.
92     ifeq ($(USE_ALT_HTTP),true)
93       HTTP_STACK = $(ALT_HTTP)
94     else
95       HTTP_STACK = $(DEFAULT_HTTP)
96     endif
97   endif
98 endif
99
100 # The Chrome stack can not be used with JSC and hence can not be used be used
101 # with the simulator.
102 ifeq ($(JAVASCRIPT_ENGINE),jsc)
103   ifeq ($(HTTP_STACK),chrome)
104     $(error Can not build with JSC and the Chrome HTTP stack)
105   endif
106 endif
107
108 # Read the environment variable to determine if Autofill is compiled.
109 # The default is on. Chrome HTTP stack must be used when Autofill
110 # is turned on.
111 ifneq ($(ENABLE_AUTOFILL),false)
112   ENABLE_AUTOFILL = true
113 endif
114 ifneq ($(HTTP_STACK),chrome)
115   ENABLE_AUTOFILL = false
116 endif
117
118 BASE_PATH := $(call my-dir)
119 include $(CLEAR_VARS)
120
121 # Define our module and find the intermediates directory
122 LOCAL_MODULE := libwebcore
123 LOCAL_MODULE_CLASS := STATIC_LIBRARIES
124 base_intermediates := $(call local-intermediates-dir)
125
126 # Using := here prevents recursive expansion
127 WEBKIT_SRC_FILES :=
128
129 # We have to use bison 2.3
130 include $(BASE_PATH)/bison_check.mk
131
132 # Build our list of include paths. We include WebKit/android/icu first so that
133 # any files that include <unicode/ucnv.h> will include our ucnv.h first. We
134 # also add external/ as an include directory so that we can specify the real
135 # icu header directory as a more exact reference to avoid including our ucnv.h.
136 #
137 # Note that JavasCriptCore/ must be included after WebCore/, so that we pick up
138 # the right config.h.
139 LOCAL_C_INCLUDES := \
140         $(JNI_H_INCLUDE) \
141         $(LOCAL_PATH)/WebKit/android/icu \
142         external/ \
143         external/icu4c/common \
144         external/icu4c/i18n \
145         external/libxml2/include \
146         external/libxslt \
147         external/hyphenation \
148         external/skia/emoji \
149         external/skia/include/core \
150         external/skia/include/effects \
151         external/skia/include/images \
152         external/skia/include/ports \
153         external/skia/include/utils \
154         external/skia/src/ports \
155         external/sqlite/dist \
156         frameworks/base/core/jni/android/graphics
157
158 LOCAL_C_INCLUDES := $(LOCAL_C_INCLUDES) \
159         $(LOCAL_PATH)/WebCore \
160         $(LOCAL_PATH)/WebCore/accessibility \
161         $(LOCAL_PATH)/WebCore/bindings/ \
162         $(LOCAL_PATH)/WebCore/bindings/generic \
163         $(LOCAL_PATH)/WebCore/css \
164         $(LOCAL_PATH)/WebCore/dom \
165         $(LOCAL_PATH)/WebCore/editing \
166         $(LOCAL_PATH)/WebCore/fileapi \
167         $(LOCAL_PATH)/WebCore/history \
168         $(LOCAL_PATH)/WebCore/history/android \
169         $(LOCAL_PATH)/WebCore/html \
170         $(LOCAL_PATH)/WebCore/html/canvas \
171         $(LOCAL_PATH)/WebCore/html/parser \
172         $(LOCAL_PATH)/WebCore/inspector \
173         $(LOCAL_PATH)/WebCore/loader \
174         $(LOCAL_PATH)/WebCore/loader/appcache \
175         $(LOCAL_PATH)/WebCore/loader/archive \
176         $(LOCAL_PATH)/WebCore/loader/archive/android \
177         $(LOCAL_PATH)/WebCore/loader/cache \
178         $(LOCAL_PATH)/WebCore/loader/icon \
179         $(LOCAL_PATH)/WebCore/notifications \
180         $(LOCAL_PATH)/WebCore/page \
181         $(LOCAL_PATH)/WebCore/page/android \
182         $(LOCAL_PATH)/WebCore/page/animation \
183         $(LOCAL_PATH)/WebCore/platform \
184         $(LOCAL_PATH)/WebCore/platform/android \
185         $(LOCAL_PATH)/WebCore/platform/animation \
186         $(LOCAL_PATH)/WebCore/platform/graphics \
187         $(LOCAL_PATH)/WebCore/platform/graphics/android \
188         $(LOCAL_PATH)/WebCore/platform/graphics/filters \
189         $(LOCAL_PATH)/WebCore/platform/graphics/gpu \
190         $(LOCAL_PATH)/WebCore/platform/graphics/network \
191         $(LOCAL_PATH)/WebCore/platform/graphics/skia \
192         $(LOCAL_PATH)/WebCore/platform/graphics/transforms \
193         $(LOCAL_PATH)/WebCore/platform/image-decoders \
194         $(LOCAL_PATH)/WebCore/platform/image-decoders/bmp \
195         $(LOCAL_PATH)/WebCore/platform/image-decoders/gif \
196         $(LOCAL_PATH)/WebCore/platform/image-decoders/ico \
197         $(LOCAL_PATH)/WebCore/platform/image-decoders/jpeg \
198         $(LOCAL_PATH)/WebCore/platform/image-decoders/png \
199         $(LOCAL_PATH)/WebCore/platform/image-decoders/webp \
200         $(LOCAL_PATH)/WebCore/platform/mock \
201         $(LOCAL_PATH)/WebCore/platform/network \
202         $(LOCAL_PATH)/WebCore/platform/network/android \
203         $(LOCAL_PATH)/WebCore/platform/sql \
204         $(LOCAL_PATH)/WebCore/platform/text \
205         $(LOCAL_PATH)/WebCore/platform/text/transcoder \
206         $(LOCAL_PATH)/WebCore/plugins \
207         $(LOCAL_PATH)/WebCore/plugins/android \
208         $(LOCAL_PATH)/WebCore/rendering \
209         $(LOCAL_PATH)/WebCore/rendering/style \
210         $(LOCAL_PATH)/WebCore/rendering/svg \
211         $(LOCAL_PATH)/WebCore/storage \
212         $(LOCAL_PATH)/WebCore/svg \
213         $(LOCAL_PATH)/WebCore/svg/animation \
214         $(LOCAL_PATH)/WebCore/svg/graphics \
215         $(LOCAL_PATH)/WebCore/svg/graphics/filters \
216         $(LOCAL_PATH)/WebCore/svg/properties \
217         $(LOCAL_PATH)/WebCore/websockets \
218         $(LOCAL_PATH)/WebCore/workers \
219         $(LOCAL_PATH)/WebCore/xml
220
221 LOCAL_C_INCLUDES := $(LOCAL_C_INCLUDES) \
222         $(LOCAL_PATH)/WebKit/android \
223         $(LOCAL_PATH)/WebKit/android/WebCoreSupport \
224         $(LOCAL_PATH)/WebKit/android/jni \
225         $(LOCAL_PATH)/WebKit/android/nav \
226         $(LOCAL_PATH)/WebKit/android/plugins
227
228 LOCAL_C_INCLUDES := $(LOCAL_C_INCLUDES) \
229         $(LOCAL_PATH)/JavaScriptCore \
230         $(LOCAL_PATH)/JavaScriptCore/wtf \
231         $(LOCAL_PATH)/JavaScriptCore/wtf/unicode \
232         $(LOCAL_PATH)/JavaScriptCore/wtf/unicode/icu
233
234 LOCAL_C_INCLUDES := $(LOCAL_C_INCLUDES) \
235         $(base_intermediates)/WebCore/ \
236         $(base_intermediates)/WebCore/css \
237         $(base_intermediates)/WebCore/html \
238         $(base_intermediates)/WebCore/platform
239
240 # The following includes are needed by the AutoFill feature, or the chrome http
241 # stack
242 LOCAL_C_INCLUDES := $(LOCAL_C_INCLUDES) \
243         $(LOCAL_PATH)/WebKit/chromium \
244         $(LOCAL_PATH)/WebKit/chromium/public \
245         external/chromium/chrome/browser \
246         external/chromium/chrome/renderer \
247         external/chromium \
248         external/chromium/chrome \
249         external/skia
250
251 ifeq ($(JAVASCRIPT_ENGINE),v8)
252 # Include WTF source file.
253 d := JavaScriptCore
254 LOCAL_PATH := $(BASE_PATH)/$d
255 intermediates := $(base_intermediates)/$d
256 include $(LOCAL_PATH)/Android.v8.wtf.mk
257 WEBKIT_SRC_FILES += $(addprefix $d/,$(LOCAL_SRC_FILES))
258 endif  # JAVASCRIPT_ENGINE == v8
259
260 # Include source files for WebCore
261 d := WebCore
262 LOCAL_PATH := $(BASE_PATH)/$d
263 JAVASCRIPTCORE_PATH := $(BASE_PATH)/JavaScriptCore
264 intermediates := $(base_intermediates)/$d
265 include $(LOCAL_PATH)/Android.mk
266 ifeq ($(JAVASCRIPT_ENGINE),jsc)
267 include $(LOCAL_PATH)/Android.jscbindings.mk
268 endif
269 ifeq ($(JAVASCRIPT_ENGINE),v8)
270 include $(LOCAL_PATH)/Android.v8bindings.mk
271 endif
272 WEBKIT_SRC_FILES += $(addprefix $d/,$(LOCAL_SRC_FILES))
273 LOCAL_C_INCLUDES += $(BINDING_C_INCLUDES)
274
275 # Include the derived source files for WebCore. Uses the same path as
276 # WebCore
277 include $(LOCAL_PATH)/Android.derived.mk
278 ifeq ($(JAVASCRIPT_ENGINE),jsc)
279 include $(LOCAL_PATH)/Android.derived.jscbindings.mk
280 endif
281 ifeq ($(JAVASCRIPT_ENGINE),v8)
282 include $(LOCAL_PATH)/Android.derived.v8bindings.mk
283 endif
284
285 # Include source files for android WebKit port
286 d := WebKit
287 LOCAL_PATH := $(BASE_PATH)/$d
288 intermediates := $(base_intermediates)/$d
289 include $(LOCAL_PATH)/Android.mk
290 WEBKIT_SRC_FILES += $(addprefix $d/,$(LOCAL_SRC_FILES))
291
292 # Redefine LOCAL_PATH here so the build system is not confused
293 LOCAL_PATH := $(BASE_PATH)
294
295 # Define our compiler flags
296 LOCAL_CFLAGS += -Wno-endif-labels -Wno-import -Wno-format
297 LOCAL_CFLAGS += -fno-strict-aliasing
298 LOCAL_CFLAGS += -include "WebCorePrefix.h"
299 LOCAL_CFLAGS += -fvisibility=hidden
300 LOCAL_CFLAGS += -DALWAYS_INLINE=inline
301 # Make sure assert.h is included before assert is defined
302 LOCAL_CFLAGS += -include "assert.h"
303 ifeq ($(HTTP_STACK),chrome)
304 LOCAL_CFLAGS += -DGOOGLEURL
305 LOCAL_CFLAGS += -DWTF_USE_CHROME_NETWORK_STACK
306 endif # HTTP_STACK == chrome
307 LOCAL_CPPFLAGS := -Wno-sign-promo
308
309 # Adds GL and EGL extensions for the GL backend
310 LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
311
312 # Enable JSC JIT if JSC is used and ENABLE_JSC_JIT environment
313 # variable is set to true
314 ifeq ($(JAVASCRIPT_ENGINE),jsc)
315 ifeq ($(ENABLE_JSC_JIT),true)
316 LOCAL_CFLAGS += -DENABLE_ANDROID_JSC_JIT=1
317 endif
318 endif
319
320 ifeq ($(TARGET_ARCH),arm)
321 LOCAL_CFLAGS += -Darm
322 # remove this warning: "note: the mangling of 'va_list' has changed in GCC 4.4"
323 LOCAL_CFLAGS += -Wno-psabi
324 endif
325
326 # need a flag to tell the C side when we're on devices with large memory
327 # budgets (i.e. larger than the low-end devices that initially shipped)
328 ifeq ($(ARCH_ARM_HAVE_VFP),true)
329 LOCAL_CFLAGS += -DANDROID_LARGE_MEMORY_DEVICE
330 endif
331
332 ifeq ($(ENABLE_SVG),true)
333 LOCAL_CFLAGS += -DENABLE_SVG=1 -DENABLE_SVG_ANIMATION=1
334 endif
335
336 ifeq ($(ENABLE_WTF_USE_ACCELERATED_COMPOSITING),false)
337 LOCAL_CFLAGS += -DWTF_USE_ACCELERATED_COMPOSITING=0
338 endif
339
340 ifeq ($(ENABLE_WTF_USE_ACCELERATED_COMPOSITING),true)
341 LOCAL_CFLAGS += -DWTF_USE_ACCELERATED_COMPOSITING=1
342 endif
343
344 ifeq ($(WEBCORE_INSTRUMENTATION),true)
345 LOCAL_CFLAGS += -DANDROID_INSTRUMENT
346 endif
347
348 # LOCAL_LDLIBS is used in simulator builds only and simulator builds are only
349 # valid on Linux
350 LOCAL_LDLIBS += -lpthread -ldl
351
352 # Build the list of shared libraries
353 LOCAL_SHARED_LIBRARIES := \
354         libandroid_runtime \
355         libnativehelper \
356         libsqlite \
357         libskia \
358         libutils \
359         libui \
360         libcutils \
361         libicuuc \
362         libicui18n \
363         libmedia \
364         libsurfaceflinger_client \
365         libEGL \
366         libGLESv2
367
368 ifeq ($(WEBCORE_INSTRUMENTATION),true)
369 LOCAL_SHARED_LIBRARIES += libhardware_legacy
370 endif
371
372 # We have to use the android version of libdl when we are not on the simulator
373 ifneq ($(TARGET_SIMULATOR),true)
374 LOCAL_SHARED_LIBRARIES += libdl libstlport
375 # We have to fake out some headers when using stlport.
376 LOCAL_C_INCLUDES += \
377         external/chromium/android
378 include external/stlport/libstlport.mk
379 endif
380
381 # We need Harfbuzz library to support complex scripts(Arabic, Thai, Hindi...).
382 ifeq ($(SUPPORT_COMPLEX_SCRIPTS),true)
383 LOCAL_C_INCLUDES := $(LOCAL_C_INCLUDES) \
384         external/harfbuzz/src \
385         external/harfbuzz/contrib
386 LOCAL_SHARED_LIBRARIES += libharfbuzz
387 LOCAL_CFLAGS += -DSUPPORT_COMPLEX_SCRIPTS=1
388 endif
389
390 # Build the list of static libraries
391 LOCAL_STATIC_LIBRARIES := libxml2 libxslt libhyphenation
392 ifeq ($(JAVASCRIPT_ENGINE),v8)
393 LOCAL_STATIC_LIBRARIES += libv8
394 endif
395
396 ifeq ($(HTTP_STACK),chrome)
397 LOCAL_STATIC_LIBRARIES += libchromium_net
398 LOCAL_SHARED_LIBRARIES += libcrypto libssl libz
399 endif # HTTP_STACK == chrome
400
401 ifeq ($(ENABLE_AUTOFILL),true)
402 LOCAL_SHARED_LIBRARIES += libexpat
403 endif
404
405 # Redefine LOCAL_SRC_FILES to be all the WebKit source files
406 LOCAL_SRC_FILES := $(WEBKIT_SRC_FILES)
407
408 # Define this for use in other makefiles.
409 WEBKIT_C_INCLUDES := $(LOCAL_C_INCLUDES)
410 WEBKIT_CFLAGS := $(LOCAL_CFLAGS)
411 WEBKIT_CPPFLAGS := $(LOCAL_CPPFLAGS)
412 WEBKIT_GENERATED_SOURCES := $(LOCAL_GENERATED_SOURCES)
413 WEBKIT_LDLIBS := $(LOCAL_LDLIBS)
414 WEBKIT_SHARED_LIBRARIES := $(LOCAL_SHARED_LIBRARIES)
415 WEBKIT_STATIC_LIBRARIES := $(LOCAL_STATIC_LIBRARIES)
416
417 # Build the library all at once
418 include $(BUILD_STATIC_LIBRARY)
419
420 ifeq ($(JAVASCRIPT_ENGINE),jsc)
421 # Now build libjs as a static library.
422 include $(CLEAR_VARS)
423 LOCAL_MODULE := libjs
424 LOCAL_LDLIBS := $(WEBKIT_LDLIBS)
425 LOCAL_SHARED_LIBRARIES := $(WEBKIT_SHARED_LIBRARIES)
426 LOCAL_STATIC_LIBRARIES := $(WEBKIT_STATIC_LIBRARIES)
427 LOCAL_CFLAGS := $(WEBKIT_CFLAGS)
428 # Include source files for JavaScriptCore
429 d := JavaScriptCore
430 LOCAL_PATH := $(BASE_PATH)/$d
431 LOCAL_MODULE_CLASS := STATIC_LIBRARIES
432 # Cannot use base_intermediates as this is a new module
433 intermediates := $(call local-intermediates-dir)
434 include $(LOCAL_PATH)/Android.mk
435 # Redefine LOCAL_SRC_FILES with the correct prefix
436 LOCAL_SRC_FILES := $(addprefix $d/,$(LOCAL_SRC_FILES))
437 # Use the base path to resolve file names
438 LOCAL_PATH := $(BASE_PATH)
439 # Append jsc intermediate include paths to the WebKit include list.
440 LOCAL_C_INCLUDES := $(WEBKIT_C_INCLUDES) \
441         $(intermediates) \
442         $(intermediates)/parser \
443         $(intermediates)/runtime \
444 # Build libjs
445 include $(BUILD_STATIC_LIBRARY)
446 endif  # JAVASCRIPT_ENGINE == jsc
447
448 # Now build the shared library using only the exported jni entry point. This
449 # will strip out any unused code from the entry point.
450 include $(CLEAR_VARS)
451 # if you need to make webcore huge (for debugging), enable this line
452 #LOCAL_PRELINK_MODULE := false
453 LOCAL_MODULE := libwebcore
454 LOCAL_LDLIBS := $(WEBKIT_LDLIBS)
455 LOCAL_SHARED_LIBRARIES := $(WEBKIT_SHARED_LIBRARIES)
456 LOCAL_STATIC_LIBRARIES := libwebcore $(WEBKIT_STATIC_LIBRARIES)
457 ifeq ($(JAVASCRIPT_ENGINE),jsc)
458 LOCAL_STATIC_LIBRARIES += libjs
459 endif
460 LOCAL_LDFLAGS := -fvisibility=hidden
461 LOCAL_CFLAGS := $(WEBKIT_CFLAGS)
462 LOCAL_CPPFLAGS := $(WEBKIT_CPPFLAGS)
463 LOCAL_C_INCLUDES := $(WEBKIT_C_INCLUDES)
464 LOCAL_PATH := $(BASE_PATH)
465 LOCAL_SRC_FILES := \
466         WebKit/android/jni/WebCoreJniOnLoad.cpp
467
468 ifeq ($(ENABLE_AUTOFILL),true)
469 # AutoFill requires some cpp files from Chromium to link with
470 # libchromium_net. We cannot compile them into libchromium_net
471 # because they have cpp file extensions, not .cc.
472 LOCAL_CFLAGS += -DWEBKIT_IMPLEMENTATION=1
473 LOCAL_SRC_FILES += \
474         WebKit/android/WebCoreSupport/autofill/MainThreadProxy.cpp \
475         WebKit/chromium/src/WebCString.cpp \
476         WebKit/chromium/src/WebRegularExpression.cpp \
477         WebKit/chromium/src/WebString.cpp
478 endif
479
480 # Do this dependency by hand. The reason we have to do this is because the
481 # headers that this file pulls in are generated during the build of webcore.
482 # We make all of our object files depend on those files so that they are built
483 # before we try to compile the file.
484 LOCAL_ADDITIONAL_DEPENDENCIES := $(filter %.h, $(WEBKIT_GENERATED_SOURCES))
485 include $(BUILD_SHARED_LIBRARY)
486
487 # Build the wds client
488 include $(BASE_PATH)/WebKit/android/wds/client/Android.mk
489
490 # Build the performance command line tool.
491 include $(BASE_PATH)/WebKit/android/benchmark/Android.mk
492
493 # Build the webkit merge tool.
494 include $(BASE_PATH)/WebKitTools/android/webkitmerge/Android.mk