mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-10 17:23:26 +01:00
ef5142d9b3
- Update make_distrib.py to support ninja builds via a new "ninja-build" flag (issue #922). - Improvements to automate.py: -- Allow specification of the depot_tools directory via a "depot-tools" flag (issue #592). -- Add ninja build support via a "ninja-build" flag (issue #922). -- Allow relative paths for download directories (issue #942). -- Add the ability to print commands without executing them via a "dry-run" flag. -- Specifying the "force-clean" flag will also remove the build output directory. -- Add support for a minimal distribution mode where only release binaries and resources are packaged. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1203 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
41 lines
1.2 KiB
INI
41 lines
1.2 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 = [
|
|
{
|
|
# 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/gyp/issues/detail?id=443
|
|
'name': 'message_loop_443',
|
|
'path': '../base/',
|
|
},
|
|
{
|
|
# 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/',
|
|
},
|
|
{
|
|
# http://code.google.com/p/chromiumembedded/issues/detail?id=364
|
|
'name': 'spi_webcore_364',
|
|
'path': '../third_party/WebKit/Source/WebCore/',
|
|
'condition': 'CEF_SPI_BUILD',
|
|
},
|
|
]
|