Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: components/visitedlink/common/BUILD.gn

Issue 2048503002: Convert visitedlink to use mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@message-mojom-magic
Patch Set: clang format Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/visitedlink/browser/visitedlink_master.cc ('k') | components/visitedlink/common/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
+ ]
+}
« no previous file with comments | « components/visitedlink/browser/visitedlink_master.cc ('k') | components/visitedlink/common/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698