| Index: chrome/common/BUILD.gn
|
| diff --git a/chrome/common/BUILD.gn b/chrome/common/BUILD.gn
|
| index b3726f95f87fce379bd43a08a16ccf9dfa1b0dca..b08e9a634792d544a787dfbef604fb67466edb98 100644
|
| --- a/chrome/common/BUILD.gn
|
| +++ b/chrome/common/BUILD.gn
|
| @@ -3,6 +3,7 @@
|
| # found in the LICENSE file.
|
|
|
| import("//tools/grit/grit_rule.gni")
|
| +import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
|
|
|
| gypi_values = exec_script("//build/gypi_to_gn.py",
|
| [ rebase_path("../chrome_common.gypi") ],
|
| @@ -84,6 +85,7 @@ static_library("common") {
|
| } else {
|
| # Non-iOS.
|
| deps += [
|
| + ":mojo_bindings",
|
| "//components/visitedlink/common",
|
| "//components/autofill/content/common",
|
| "//components/autofill/core/common",
|
| @@ -95,6 +97,9 @@ static_library("common") {
|
| "//third_party/re2",
|
| "//third_party/widevine/cdm:version_h",
|
| ]
|
| + public_deps = [
|
| + "//third_party/mojo/src/mojo/public/cpp/bindings",
|
| + ]
|
| }
|
|
|
| if (enable_extensions) {
|
| @@ -346,3 +351,9 @@ static_library("app_mode_app_support") {
|
| "//base",
|
| ]
|
| }
|
| +
|
| +mojom("mojo_bindings") {
|
| + sources = [
|
| + "resource_usage_reporter.mojom",
|
| + ]
|
| +}
|
|
|