Merge pull request #51 from halton/master
[platform/framework/web/tizen-extensions-crosswalk.git] / notification / notification.gyp
1 {
2   'includes':[
3     '../common/common.gypi',
4   ],
5   'targets': [
6     {
7       'target_name': 'tizen_notification',
8       'type': 'loadable_module',
9       'includes': [
10         '../common/pkg-config.gypi',
11       ],
12       'sources': [
13         'notification_api.js',
14         'notification_context.cc',
15         'notification_context.h',
16         'notification_context_desktop.cc',
17         'notification_context_mobile.cc',
18         'mobile/notification_manager.cc',
19         'mobile/notification_manager.h',
20       ],
21
22       'conditions': [
23         [ 'extension_host_os == "desktop"', {
24             'variables': { 'packages': ['libnotify'] },
25         }],
26         [ 'extension_host_os == "mobile"', {
27             'variables': { 'packages': ['notification'] },
28         }],
29       ],
30     },
31   ],
32 }