XWalk WebView patchset, README and LICENSE files.
[platform/framework/web/xwalk_webview.git] / patchset / 0027-Always-build-the-efl_webview-target-as-a-shared-libr.patch
1 From 2b1967f2e23de6675719dd9c06f9280eb838bdca Mon Sep 17 00:00:00 2001
2 From: Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3 Date: Mon, 12 Aug 2013 18:06:31 +0300
4 Subject: [PATCH 27/33] Always build the efl_webview target as a shared
5  library.
6
7 In the vast majority of the time, people are interested in using
8 libefl_webview.so as a shared library instead of a static archive.
9
10 Chromium's `component' variable specifies whether one wants to build all
11 libraries as shared or static; in our case, we want to build all libraries
12 as static, _except_ for the final libefl_webview.so, which should always be
13 shared.
14 ---
15  efl_webview/efl_webview.gyp | 2 +-
16  1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/efl_webview/efl_webview.gyp b/efl_webview/efl_webview.gyp
19 index 630102b..93de1f3 100644
20 --- a/efl_webview/efl_webview.gyp
21 +++ b/efl_webview/efl_webview.gyp
22 @@ -14,7 +14,7 @@
23    'targets': [
24      {
25        'target_name': 'efl_webview',
26 -      'type': '<(component)',
27 +      'type': 'shared_library',
28        'variables': {
29          'chromium_code': 1,
30        },
31 -- 
32 1.8.1.2
33