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

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

Issue 2828313002: Convert render process component common Spellcheck IPC to mojo (Closed)
Patch Set: Build fix. Created 3 years, 7 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 | « chrome/browser/spellchecker/spellcheck_service_browsertest.cc ('k') | components/spellcheck/common/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/spellcheck/common/BUILD.gn
diff --git a/components/spellcheck/common/BUILD.gn b/components/spellcheck/common/BUILD.gn
index 69d4d0cbf280da9a695d4f9c9e89c90fb8005b8e..4806ceef916951ba68196f8d2262da6d91544f15 100644
--- a/components/spellcheck/common/BUILD.gn
+++ b/components/spellcheck/common/BUILD.gn
@@ -2,9 +2,10 @@
# 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")
+
source_set("common") {
sources = [
- "spellcheck_bdict_language.h",
"spellcheck_common.cc",
"spellcheck_common.h",
"spellcheck_features.cc",
@@ -18,11 +19,23 @@ source_set("common") {
]
public_deps = [
+ ":interfaces",
"//components/spellcheck:build_features",
]
+
deps = [
"//base:i18n",
"//ipc",
"//third_party/icu",
]
}
+
+mojom("interfaces") {
+ sources = [
+ "spellcheck.mojom",
+ ]
+
+ public_deps = [
+ "//mojo/common:common_custom_types",
+ ]
+}
« no previous file with comments | « chrome/browser/spellchecker/spellcheck_service_browsertest.cc ('k') | components/spellcheck/common/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698