| Index: content/public/common/BUILD.gn
|
| diff --git a/content/public/common/BUILD.gn b/content/public/common/BUILD.gn
|
| index 9432838d266fc701951510df089ff87648cdd8d5..a38a3967b082ab36eb8b81c1545566c2001b52b5 100644
|
| --- a/content/public/common/BUILD.gn
|
| +++ b/content/public/common/BUILD.gn
|
| @@ -101,6 +101,9 @@ source_set("common_sources") {
|
| "//url/ipc:url_ipc",
|
| ]
|
| deps = [
|
| + # This looks needless as we have //content/common in public_deps, but it's
|
| + # needed because of allow_circular_includes_from.
|
| + "//content/common:mojo_bindings_cpp_sources",
|
| "//ipc",
|
| "//media",
|
| "//mojo/common",
|
| @@ -120,7 +123,10 @@ source_set("common_sources") {
|
| ]
|
|
|
| # //content/common needs to include public headers.
|
| - allow_circular_includes_from = [ "//content/common" ]
|
| + allow_circular_includes_from = [
|
| + "//content/common",
|
| + "//content/common:mojo_bindings_cpp_sources",
|
| + ]
|
|
|
| if (!enable_plugins) {
|
| sources -= [
|
|
|