| Index: content/common/BUILD.gn
|
| diff --git a/content/common/BUILD.gn b/content/common/BUILD.gn
|
| index 47c31c8e707b9d4ef144d817f75ccba75e384d6b..690ffff1a5ddb260cada9f21c293240d34a490f6 100644
|
| --- a/content/common/BUILD.gn
|
| +++ b/content/common/BUILD.gn
|
| @@ -36,6 +36,9 @@ source_set("common") {
|
| "//third_party/WebKit/public:blink_headers",
|
| ]
|
| deps = [
|
| + # This looks needless as we have :mojo_bindings in public_deps, but it's
|
| + # needed because of allow_circular_includes_from.
|
| + ":mojo_bindings_cpp_sources",
|
| "//base",
|
| "//base/third_party/dynamic_annotations",
|
| "//build/util:webkit_version",
|
| @@ -102,6 +105,8 @@ source_set("common") {
|
| libs = []
|
| ldflags = []
|
|
|
| + allow_circular_includes_from = [ ":mojo_bindings_cpp_sources" ]
|
| +
|
| if (is_android && use_seccomp_bpf) {
|
| set_sources_assignment_filter([])
|
| sources += [
|
| @@ -246,6 +251,8 @@ mojom("mojo_bindings") {
|
| "render_widget_window_tree_client_factory.mojom",
|
| "service_worker/embedded_worker_setup.mojom",
|
| "storage_partition_service.mojom",
|
| + "url_loader.mojom",
|
| + "url_loader_factory.mojom",
|
| ]
|
|
|
| import_dirs = [ "//mojo/services" ]
|
|
|