| Index: components/content_settings/core/common/BUILD.gn
|
| diff --git a/components/content_settings/core/common/BUILD.gn b/components/content_settings/core/common/BUILD.gn
|
| index a73d49ed145f80edd5c17624e114e3cff61bbbe3..42404221620090bf37de7d687fefa8a87d135a1c 100644
|
| --- a/components/content_settings/core/common/BUILD.gn
|
| +++ b/components/content_settings/core/common/BUILD.gn
|
| @@ -2,6 +2,8 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +import("//mojo/public/tools/bindings/mojom.gni")
|
| +
|
| static_library("common") {
|
| sources = [
|
| "content_settings.cc",
|
| @@ -19,6 +21,7 @@ static_library("common") {
|
|
|
| deps = [
|
| "//base",
|
| + "//mojo/public/cpp/bindings:struct_traits",
|
| "//net",
|
| "//url",
|
| ]
|
| @@ -39,3 +42,9 @@ source_set("unit_tests") {
|
| "//url",
|
| ]
|
| }
|
| +
|
| +mojom("mojo_bindings") {
|
| + sources = [
|
| + "content_settings.mojom",
|
| + ]
|
| +}
|
|
|