OSDN Git Service

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