mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-14 10:57:46 +01:00
a6c00b2ff6
Add support for building the CEF binary distribution using Bazel and the default platform toolchain. Tested to work for Windows x64, MacOS ARM64 and x64 (cross-compile from ARM64), and Linux x64. Windows x86 (cross-compile from x64) is known to be broken, see https://github.com/bazelbuild/bazel/issues/22164. Includes minor changes to tests directory structure to meet Bazel build requirements.
26 lines
979 B
INI
26 lines
979 B
INI
# Additional handling of transfer files.
|
|
# target: Target location relative to the target release directory. This
|
|
# value is required.
|
|
# source: Source location relative to the CEF root directory. This value
|
|
# is optional. If specified the source file will be copied to the target
|
|
# location and a TRANSFER-README.txt file will be created.
|
|
# post-process: Post-processing operation to perform. This value is
|
|
# optional and may be any one of the following:
|
|
# 'normalize_headers': Replace fully-qualified project header paths with
|
|
# the optionally specified 'new_header_path' value.
|
|
|
|
[
|
|
{
|
|
'source' : '../build/win/compatibility.manifest',
|
|
'target' : 'tests/cefclient/win/compatibility.manifest',
|
|
},
|
|
{
|
|
'source' : '../build/win/compatibility.manifest',
|
|
'target' : 'tests/cefsimple/win/compatibility.manifest',
|
|
},
|
|
{
|
|
'source' : '../build/win/compatibility.manifest',
|
|
'target' : 'tests/ceftests/win/compatibility.manifest',
|
|
},
|
|
]
|