c9b7806418
* chore: bump chromium in DEPS to 129.0.6645.0 * chore: update patches * chore: bump chromium in DEPS to 129.0.6646.0 * refactor: remove ppapi dependency PPAPI removal - https://issues.chromium.org/issues/40511450 PDF viewer migration - https://issues.chromium.org/issues/40511452 * chore: update patches * chore: enable `content_enable_legacy_ipc` We were indirectly relying on this via `enable_ppapi=true`, with 633a57d9b62da7850ef7946f6b101ed440d04cdd ppapi is now disabled and this commit makes the dependency explicit. * fix: gn check --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: deepak1556 <hop2deep@gmail.com>
28 lines
740 B
Text
28 lines
740 B
Text
import("//mojo/public/tools/bindings/mojom.gni")
|
|
|
|
mojom("mojo") {
|
|
sources = [ "api/api.mojom" ]
|
|
|
|
public_deps = [
|
|
"//mojo/public/mojom/base",
|
|
"//third_party/blink/public/mojom:mojom_core",
|
|
"//ui/gfx/geometry/mojom",
|
|
]
|
|
|
|
# Needed for component build or we'll get duplicate symbols for many mojom
|
|
# interfaces already included in blink_common.dll
|
|
overridden_deps = [ "//third_party/blink/public/mojom:mojom_core" ]
|
|
component_deps = [ "//third_party/blink/public/common" ]
|
|
}
|
|
|
|
mojom("plugin") {
|
|
# We don't want Blink variants of these bindings to be generated.
|
|
disable_variants = true
|
|
|
|
sources = [ "plugin.mojom" ]
|
|
|
|
public_deps = [
|
|
"//content/public/common:interfaces",
|
|
"//mojo/public/mojom/base",
|
|
]
|
|
}
|