Upstream version 10.38.220.0
[platform/framework/web/crosswalk.git] / packaging / crosswalk-do-not-look-for-gtk-dependencies-on-x11.patch
1 Author: Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
2
3 Crosswalk has no dependencies on GTK+, which is not even packaged on Tizen. The
4 original check below works fine for Tizen profiles that use Wayland, since that
5 implies Ozone. However, Tizen Mobile still uses X11 and we thus need an
6 additional check for it not to look for GTK dependencies.
7 --- src/build/linux/system.gyp
8 +++ src/build/linux/system.gyp
9 @@ -22,7 +22,7 @@
10      'linux_link_libbrlapi%': 0,
11    },
12    'conditions': [
13 -    [ 'chromeos==0 and use_ozone==0', {
14 +    [ 'chromeos==0 and use_ozone==0 and tizen==0', {
15        # Hide GTK and related dependencies for Chrome OS and Ozone, so they won't get
16        # added back to Chrome OS and Ozone. Don't try to use GTK on Chrome OS and Ozone.
17        'targets': [