| Index: components/visitedlink/common/BUILD.gn
|
| diff --git a/components/visitedlink/common/BUILD.gn b/components/visitedlink/common/BUILD.gn
|
| index ae0f12dda9de47874641e632e200af343213dedb..b131dd1eeb24729e4253f9bc8b6721577d72ffac 100644
|
| --- a/components/visitedlink/common/BUILD.gn
|
| +++ b/components/visitedlink/common/BUILD.gn
|
| @@ -2,19 +2,28 @@
|
| # 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 = [
|
| "visitedlink_common.cc",
|
| "visitedlink_common.h",
|
| - "visitedlink_message_generator.cc",
|
| - "visitedlink_message_generator.h",
|
| - "visitedlink_messages.h",
|
| + ]
|
| + public_deps = [
|
| + ":interfaces",
|
| ]
|
|
|
| deps = [
|
| + ":interfaces",
|
| "//base",
|
| "//content/public/common",
|
| "//ipc",
|
| "//url",
|
| ]
|
| }
|
| +
|
| +mojom("interfaces") {
|
| + sources = [
|
| + "visitedlink.mojom",
|
| + ]
|
| +}
|
|
|