2013-03-13 19:12:05 +00:00
|
|
|
{
|
2015-04-09 02:14:25 +00:00
|
|
|
'variables': {
|
|
|
|
# The libraries brightray will be compiled to.
|
2015-07-07 06:15:27 +00:00
|
|
|
'linux_system_libraries': 'gtk+-2.0 libnotify dbus-1 x11 xrandr xext gconf-2.0 gmodule-2.0 nss'
|
2015-04-09 02:14:25 +00:00
|
|
|
},
|
2013-03-13 19:12:05 +00:00
|
|
|
'includes': [
|
2015-04-09 02:11:28 +00:00
|
|
|
'filenames.gypi',
|
2013-03-13 19:12:05 +00:00
|
|
|
],
|
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'brightray',
|
|
|
|
'type': 'static_library',
|
|
|
|
'include_dirs': [
|
2013-03-13 20:45:00 +00:00
|
|
|
'.',
|
2015-04-02 14:14:18 +00:00
|
|
|
'<(libchromiumcontent_src_dir)',
|
|
|
|
'<(libchromiumcontent_src_dir)/skia/config',
|
|
|
|
'<(libchromiumcontent_src_dir)/third_party/skia/include/core',
|
2015-04-21 06:30:06 +00:00
|
|
|
'<(libchromiumcontent_src_dir)/third_party/mojo/src',
|
2015-04-02 14:14:18 +00:00
|
|
|
'<(libchromiumcontent_src_dir)/third_party/WebKit',
|
|
|
|
'<(libchromiumcontent_dir)/gen',
|
2013-03-13 19:12:05 +00:00
|
|
|
],
|
|
|
|
'direct_dependent_settings': {
|
|
|
|
'include_dirs': [
|
2014-07-07 16:28:10 +00:00
|
|
|
'.',
|
2013-05-22 16:14:29 +00:00
|
|
|
'..',
|
2015-04-02 14:14:18 +00:00
|
|
|
'<(libchromiumcontent_src_dir)',
|
|
|
|
'<(libchromiumcontent_src_dir)/skia/config',
|
|
|
|
'<(libchromiumcontent_src_dir)/third_party/skia/include/core',
|
|
|
|
'<(libchromiumcontent_src_dir)/third_party/icu/source/common',
|
2015-04-21 06:30:06 +00:00
|
|
|
'<(libchromiumcontent_src_dir)/third_party/mojo/src',
|
2015-04-02 14:14:18 +00:00
|
|
|
'<(libchromiumcontent_src_dir)/third_party/WebKit',
|
|
|
|
'<(libchromiumcontent_dir)/gen',
|
2013-03-13 19:12:05 +00:00
|
|
|
],
|
|
|
|
},
|
2015-04-09 02:11:28 +00:00
|
|
|
'sources': [ '<@(brightray_sources)' ],
|
2013-03-13 19:12:05 +00:00
|
|
|
'conditions': [
|
2015-04-09 01:58:07 +00:00
|
|
|
# Link with libraries of libchromiumcontent.
|
2015-04-08 08:22:55 +00:00
|
|
|
['OS=="linux" and libchromiumcontent_component==0', {
|
|
|
|
# On Linux we have to use "--whole-archive" to force executable
|
|
|
|
# to include all symbols, otherwise we will have plenty of
|
|
|
|
# unresolved symbols errors.
|
|
|
|
'direct_dependent_settings': {
|
|
|
|
'ldflags': [
|
|
|
|
'-Wl,--whole-archive',
|
|
|
|
'<@(libchromiumcontent_libraries)',
|
|
|
|
'-Wl,--no-whole-archive',
|
|
|
|
],
|
|
|
|
}
|
2015-04-11 05:26:29 +00:00
|
|
|
}, { # (Release build on Linux)
|
2015-04-08 08:22:55 +00:00
|
|
|
'link_settings': {
|
|
|
|
'libraries': [ '<@(libchromiumcontent_libraries)' ]
|
|
|
|
},
|
2015-04-11 05:26:29 +00:00
|
|
|
}], # (Normal builds)
|
|
|
|
# Linux specific link settings.
|
2013-11-07 20:02:35 +00:00
|
|
|
['OS=="linux"', {
|
|
|
|
'link_settings': {
|
2014-11-24 11:27:11 +00:00
|
|
|
'ldflags': [
|
2015-04-09 02:14:25 +00:00
|
|
|
'<!@(pkg-config --libs-only-L --libs-only-other <(linux_system_libraries))',
|
2014-11-24 11:27:11 +00:00
|
|
|
],
|
2013-11-07 20:02:35 +00:00
|
|
|
'libraries': [
|
2013-11-26 16:51:27 +00:00
|
|
|
'-lpthread',
|
2015-04-09 02:14:25 +00:00
|
|
|
'<!@(pkg-config --libs-only-l <(linux_system_libraries))',
|
2015-04-09 01:58:07 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
'cflags': [
|
2015-04-09 02:14:25 +00:00
|
|
|
'<!@(pkg-config --cflags <(linux_system_libraries))',
|
2015-04-09 01:58:07 +00:00
|
|
|
# Needed by using libgtk2ui:
|
|
|
|
'-Wno-deprecated-register',
|
2015-04-12 08:15:23 +00:00
|
|
|
'-Wno-sentinel',
|
2015-04-09 01:58:07 +00:00
|
|
|
],
|
2015-04-22 05:50:27 +00:00
|
|
|
'cflags_cc': [
|
|
|
|
'-Wno-reserved-user-defined-literal',
|
|
|
|
],
|
2015-04-09 01:58:07 +00:00
|
|
|
'direct_dependent_settings': {
|
|
|
|
'cflags': [
|
2015-04-09 02:14:25 +00:00
|
|
|
'<!@(pkg-config --cflags <(linux_system_libraries))',
|
2015-04-09 01:58:07 +00:00
|
|
|
'-Wno-deprecated-register',
|
2015-04-12 08:15:23 +00:00
|
|
|
'-Wno-sentinel',
|
2013-11-07 20:02:35 +00:00
|
|
|
],
|
|
|
|
},
|
2015-04-08 04:08:21 +00:00
|
|
|
'conditions': [
|
|
|
|
['libchromiumcontent_component', {
|
|
|
|
'link_settings': {
|
|
|
|
'libraries': [
|
2015-08-11 02:39:40 +00:00
|
|
|
# Following libraries are always linked statically.
|
2015-04-08 04:08:21 +00:00
|
|
|
'<(libchromiumcontent_dir)/libgtk2ui.a',
|
2015-08-11 02:39:40 +00:00
|
|
|
'<(libchromiumcontent_dir)/libdevtools_discovery.a',
|
|
|
|
'<(libchromiumcontent_dir)/libdevtools_http_handler.a',
|
|
|
|
'<(libchromiumcontent_dir)/libhttp_server.a',
|
2015-04-08 04:08:21 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
'link_settings': {
|
|
|
|
'libraries': [
|
2015-04-09 01:58:07 +00:00
|
|
|
# Following libraries are required by libchromiumcontent:
|
2015-04-08 08:22:55 +00:00
|
|
|
'-lasound',
|
|
|
|
'-lcap',
|
|
|
|
'-lcups',
|
|
|
|
'-lrt',
|
|
|
|
'-ldl',
|
|
|
|
'-lresolv',
|
|
|
|
'-lfontconfig',
|
|
|
|
'-lfreetype',
|
|
|
|
'-lX11 -lXi -lXcursor -lXext -lXfixes -lXrender -lXcomposite -lXdamage -lXtst -lXrandr',
|
|
|
|
'-lexpat',
|
2015-04-08 04:08:21 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
}],
|
|
|
|
],
|
2015-04-11 05:26:29 +00:00
|
|
|
}], # OS=="linux"
|
2013-03-13 19:12:05 +00:00
|
|
|
['OS=="mac"', {
|
|
|
|
'link_settings': {
|
|
|
|
'libraries': [
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
|
|
|
|
],
|
|
|
|
},
|
2015-04-11 05:26:29 +00:00
|
|
|
'conditions': [
|
2015-08-11 02:39:40 +00:00
|
|
|
['libchromiumcontent_component', {
|
|
|
|
'link_settings': {
|
|
|
|
'libraries': [
|
|
|
|
# Following libraries are always linked statically.
|
|
|
|
'<(libchromiumcontent_dir)/libdevtools_discovery.a',
|
|
|
|
'<(libchromiumcontent_dir)/libdevtools_http_handler.a',
|
|
|
|
'<(libchromiumcontent_dir)/libhttp_server.a',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}, {
|
2015-04-11 05:26:29 +00:00
|
|
|
'link_settings': {
|
|
|
|
'libraries': [
|
2015-08-11 02:39:40 +00:00
|
|
|
# Link with system frameworks.
|
2015-04-11 05:26:29 +00:00
|
|
|
# ui_base.gypi:
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/Accelerate.framework',
|
|
|
|
# net.gypi:
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/Security.framework',
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.framework',
|
2015-10-19 19:36:08 +00:00
|
|
|
'-lresolv',
|
2015-04-11 05:26:29 +00:00
|
|
|
# media.gyp:
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework',
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework',
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework',
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
|
|
|
|
# surface.gyp:
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/IOSurface.framework',
|
|
|
|
# content_common.gypi:
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
|
|
|
|
# base.gyp:
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework',
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/Carbon.framework',
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
|
|
|
|
# content_browser.gypi:
|
2015-10-06 20:07:54 +00:00
|
|
|
'-lbsm',
|
2015-04-21 11:05:39 +00:00
|
|
|
# bluetooth.gyp:
|
|
|
|
'$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework',
|
2015-04-09 05:38:54 +00:00
|
|
|
],
|
2015-04-11 05:26:29 +00:00
|
|
|
},
|
|
|
|
}],
|
|
|
|
]
|
|
|
|
}], # OS=="mac"
|
|
|
|
['OS=="win"', {
|
2015-11-04 18:13:52 +00:00
|
|
|
'msvs_settings': {
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'AdditionalDependencies': [
|
|
|
|
'runtimeobject.lib',
|
|
|
|
'windowsapp.lib'
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2015-04-11 05:26:29 +00:00
|
|
|
'conditions': [
|
|
|
|
['libchromiumcontent_component', {
|
2015-08-04 08:02:44 +00:00
|
|
|
# sandbox, base_static, devtools_discovery, devtools_http_handler,
|
|
|
|
# http_server are always linked statically.
|
2015-04-11 05:26:29 +00:00
|
|
|
'link_settings': {
|
|
|
|
'libraries': [
|
|
|
|
'<(libchromiumcontent_dir)/base_static.lib',
|
|
|
|
'<(libchromiumcontent_dir)/sandbox.lib',
|
2015-07-24 02:10:25 +00:00
|
|
|
'<(libchromiumcontent_dir)/devtools_discovery.lib',
|
|
|
|
'<(libchromiumcontent_dir)/devtools_http_handler.lib',
|
2015-08-04 08:02:44 +00:00
|
|
|
'<(libchromiumcontent_dir)/http_server.lib',
|
2015-04-11 05:26:29 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
# Link with system libraries.
|
|
|
|
'link_settings': {
|
|
|
|
'libraries': [
|
|
|
|
# content_browser.gypi:
|
|
|
|
'-lsensorsapi.lib',
|
|
|
|
'-lportabledeviceguids.lib',
|
2015-04-06 07:20:27 +00:00
|
|
|
# content_common.gypi:
|
2015-04-11 05:26:29 +00:00
|
|
|
'-ld3d9.lib',
|
2015-05-23 03:25:37 +00:00
|
|
|
'-ld3d11.lib',
|
2015-04-11 05:26:29 +00:00
|
|
|
'-ldxva2.lib',
|
|
|
|
'-lstrmiids.lib',
|
|
|
|
'-lmf.lib',
|
|
|
|
'-lmfplat.lib',
|
|
|
|
'-lmfuuid.lib',
|
|
|
|
# media.gyp:
|
|
|
|
'-lmfreadwrite.lib',
|
2015-04-06 07:03:53 +00:00
|
|
|
],
|
2015-04-11 05:26:29 +00:00
|
|
|
'msvs_settings': {
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'AdditionalDependencies': [
|
2015-11-04 18:13:52 +00:00
|
|
|
'Shlwapi.lib',
|
|
|
|
'Crypt32.lib',
|
2015-04-11 05:26:29 +00:00
|
|
|
'advapi32.lib',
|
|
|
|
'dbghelp.lib',
|
2015-08-21 08:19:57 +00:00
|
|
|
'delayimp.lib',
|
2015-04-11 05:26:29 +00:00
|
|
|
'dwmapi.lib',
|
|
|
|
'gdi32.lib',
|
|
|
|
'netapi32.lib',
|
|
|
|
'oleacc.lib',
|
|
|
|
'powrprof.lib',
|
|
|
|
'user32.lib',
|
|
|
|
'usp10.lib',
|
|
|
|
'version.lib',
|
|
|
|
'winspool.lib',
|
|
|
|
],
|
|
|
|
'DelayLoadDLLs': [
|
|
|
|
# content_common.gypi:
|
|
|
|
'd3d9.dll',
|
|
|
|
'dxva2.dll',
|
2015-04-20 11:47:21 +00:00
|
|
|
# media.gyp:
|
2015-04-11 05:26:29 +00:00
|
|
|
'mf.dll',
|
|
|
|
'mfplat.dll',
|
2015-04-20 11:47:21 +00:00
|
|
|
'mfreadwrite.dll',
|
2015-04-23 05:26:34 +00:00
|
|
|
# bluetooth.gyp:
|
|
|
|
'BluetoothApis.dll',
|
|
|
|
'Bthprops.cpl',
|
|
|
|
'setupapi.dll',
|
2015-04-11 05:26:29 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2015-04-06 07:03:53 +00:00
|
|
|
},
|
2015-04-11 05:26:29 +00:00
|
|
|
}], # libchromiumcontent_component
|
|
|
|
],
|
|
|
|
}], # OS=="win"
|
2013-03-13 19:12:05 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|