55 lines
2.2 KiB
Plaintext
55 lines
2.2 KiB
Plaintext
# The Chromium Embedded Framework (CEF) project is built on top of the Chromium
|
|
# project source tree. When updating Chromium to a new version certain files and
|
|
# patterns should be observed for changes. If changes are detected then the CEF
|
|
# source code or patch files will likely need to be updated.
|
|
#
|
|
# Add `--log-chromium-changes` to the automate-git.py command-line to output
|
|
# the following files in the <download-dir>:
|
|
#
|
|
# * chromium_update_changes.diff
|
|
# Files in the chromium/src directory that have changed. See the 'files'
|
|
# section below.
|
|
#
|
|
# * chromium_update_patterns.txt
|
|
# Files in the chromium/src directory that contain invalid/unexpected
|
|
# patterns. See the 'patterns' section below. Failure of this step is
|
|
# considered a fatal error during update.
|
|
#
|
|
# * chromium_update_patches.txt
|
|
# Output from attempting to update existing Chromium patch files using the
|
|
# patch_updater.py tool. Failure of this step is considered a fatal error
|
|
# during update.
|
|
#
|
|
# For complete update instructions see:
|
|
# https://bitbucket.org/chromiumembedded/cef/wiki/ChromiumUpdate.md
|
|
|
|
{
|
|
# Files in the chromium/src directory that should be evaluated for changes.
|
|
# Similar changes may need to be applied to the CEF source code.
|
|
'files': [
|
|
'components/content_settings/core/common/content_settings_types.mojom',
|
|
'components/permissions/request_type.h',
|
|
'content/browser/renderer_host/render_widget_host_view_base.*',
|
|
'content/public/browser/content_browser_client.*',
|
|
'content/public/browser/render_widget_host_view.h',
|
|
'content/public/browser/web_contents_delegate.h',
|
|
'content/public/common/content_features.cc',
|
|
'content/shell/BUILD.gn',
|
|
'content/shell/app/*',
|
|
'content/shell/browser/shell_*',
|
|
'content/shell/browser/renderer_host/shell_*',
|
|
'content/shell/common/shell_*',
|
|
'content/shell/gpu/shell_*',
|
|
'content/shell/renderer/shell_*',
|
|
'content/shell/utility/shell_*',
|
|
'extensions/shell/*',
|
|
'net/base/features.cc',
|
|
'net/cookies/cookie_store.h',
|
|
'services/network/public/cpp/features.cc',
|
|
'ui/base/ui_base_features.cc',
|
|
],
|
|
# Patterns that should not be found in the chromium/src directory after
|
|
# applying patch files.
|
|
'patterns': [],
|
|
}
|