mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-24 16:07:42 +01:00
Mac: Add off-screen rendering support (issue #518). - Build with the 10.7 SDK (set GYP_DEFINES='mac_sdk=10.7') to include Retina support in the cefclient OSR example. git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1453@1227 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
56 lines
1.7 KiB
INI
56 lines
1.7 KiB
INI
# Each map in the list associates a patch file name with a target path and
|
|
# optional condition. All paths in the patch file must be relative to the
|
|
# target path. Each map should include a comment linking to the code review
|
|
# or bug report that the patch relates to. If a condition is provided the
|
|
# patch will only be applied if an environment variable with the specified
|
|
# name exists.
|
|
|
|
patches = [
|
|
{
|
|
# Necessary for grit integration
|
|
'name': 'gritsettings',
|
|
'path': '../tools/gritsettings/',
|
|
},
|
|
{
|
|
# http://codereview.chromium.org/8086022/
|
|
'name': 'build',
|
|
'path': '../build/',
|
|
},
|
|
{
|
|
# http://code.google.com/p/chromiumembedded/issues/detail?id=496
|
|
'name': 'zlib',
|
|
'path': '../third_party/zlib/',
|
|
},
|
|
{
|
|
# http://code.google.com/p/chromiumembedded/issues/detail?id=443
|
|
'name': 'message_loop_443',
|
|
'path': '../base/',
|
|
},
|
|
{
|
|
# http://code.google.com/p/chromiumembedded/issues/detail?id=899
|
|
'name': 'webkit_features',
|
|
'path': '../third_party/WebKit/Source/WebKit/chromium/',
|
|
},
|
|
{
|
|
# http://code.google.com/p/chromiumembedded/issues/detail?id=933
|
|
'name': 'webkit_933',
|
|
'path': '../third_party/WebKit/Source/WebKit/chromium/src/',
|
|
},
|
|
{
|
|
# http://code.google.com/p/gyp/issues/detail?id=331
|
|
'name': 'gyp_331',
|
|
'path': '../tools/gyp/pylib/',
|
|
},
|
|
{
|
|
# Enable popups in offscreen rendering on Mac
|
|
'name': 'webkit_popups',
|
|
'path': '../third_party/WebKit/Source/WebKit/chromium/',
|
|
},
|
|
{
|
|
# http://code.google.com/p/chromiumembedded/issues/detail?id=364
|
|
'name': 'spi_webcore_364',
|
|
'path': '../third_party/WebKit/Source/WebCore/',
|
|
'condition': 'CEF_SPI_BUILD',
|
|
},
|
|
]
|