OSDN Git Service

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