cef/tools/distrib
Marshall Greenblatt b98eac265a bazel: mac: Copy but don't link the CEF framework (see #3757)
Copy the CEF framework into the app bundle but do not link it. See
https://groups.google.com/g/cef-announce/c/Fith0A3kWtw/m/6ds_mJVMCQAJ
for background.

Use `**kwargs` to pass all other arguments to the actual
`macos_application` target declaration.
2024-08-09 13:18:06 -04:00
..
bazel bazel: mac: Copy but don't link the CEF framework (see #3757) 2024-08-09 13:18:06 -04:00
gtest
linux bazel: Add initial config for binary distribution (see #3757) 2024-07-28 18:19:47 +00:00
mac bazel: Add initial config for binary distribution (see #3757) 2024-07-28 18:19:47 +00:00
tools distrib: Add new tools distribution for mksnapshot (see #3734) 2024-07-16 12:43:12 -04:00
win bazel: Add initial config for binary distribution (see #3757) 2024-07-28 18:19:47 +00:00
README-TRANSFER.txt
README.client.txt
README.footer.txt
README.header.txt
README.tools.txt distrib: Add new tools distribution for mksnapshot (see #3734) 2024-07-16 12:43:12 -04:00
transfer.cfg win: Fix MSVC compile error with cef_color_ids.h (see #3671) 2024-04-11 11:29:51 -04:00
transfer_standard.cfg

README.tools.txt

CONTENTS
--------

Debug       Contains the Debug build of tools.

Release     Contains the Release build of tools.


IMPORTANT NOTE
--------------

CEF/Chromium builds are created using the following host architectures:

- Linux:   x86-64 (Intel/AMD)
- Windows: x86-64 (Intel/AMD)
- MacOS:   ARM64 (Apple Silicon)

Binaries in this tools package must be run on the supported host OS/architecture
even in cases where the output targets a different architecture.

For example, files targeting a MacOS 64-bit (Intel) application must be created
on a MacOS ARM64 (Apple Silicon) host system using the MacOS 64-bit (Intel)
tools distribution.


USAGE
-----

Start with the required host system and the tools distribution that matches your
application's target OS/architecture and CEF version.

Custom V8 Snapshots

Custom startup snapshots [https://v8.dev/blog/custom-startup-snapshots] can be
used to speed up V8/JavaScript load time in the renderer process. With CEF this
works as follows:

1. Generate a single JavaScript file that contains custom startup data. For
   example, using https://github.com/atom/electron-link.

2. Execute the `run_mksnapshot` script to create a `v8_context_snapshot.bin`
   file containing the custom data in addition to the default V8 data.

   Example:
   % run_mksnapshot Release /path/to/snapshot.js

   Note that bin file names include an architecture component on MacOS
   (e.g. `v8_context_snapshot.[arm64|x86_64].bin`)

3. Replace the existing `v8_context_snapshot.bin` file in the installation
   folder or app bundle.

4. Run the application and verify in DevTools that the custom startup data
   exists. For example, electron-link adds a global `snapshotResult` object.

Please visit the CEF Website for additional usage information.

https://bitbucket.org/chromiumembedded/cef/