chore: duplicate symbols for mojom interfaces in component build (#27186)

* fix duplicate symbols in component build

* fix: duplicate symbols for mojom interfaces in component build
This commit is contained in:
riccardopiola 2021-01-19 03:31:44 +01:00 committed by GitHub
parent b27fa567bc
commit d7b02e123a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,6 +10,11 @@ mojom("mojo") {
"//ui/gfx/geometry/mojom",
]
# Needed for component build or we'll get duplicate symbols for many mojom
# interfaces aready included in blink_common.dll
overridden_deps = [ "//third_party/blink/public/mojom:mojom_core" ]
component_deps = [ "//third_party/blink/public/common" ]
enabled_features = []
if (enable_remote_module) {
enabled_features += [ "enable_remote_module" ]