summaryrefslogtreecommitdiff
path: root/chromium/components/spellcheck/common/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/spellcheck/common/BUILD.gn')
-rw-r--r--chromium/components/spellcheck/common/BUILD.gn26
1 files changed, 26 insertions, 0 deletions
diff --git a/chromium/components/spellcheck/common/BUILD.gn b/chromium/components/spellcheck/common/BUILD.gn
new file mode 100644
index 00000000000..465a327f214
--- /dev/null
+++ b/chromium/components/spellcheck/common/BUILD.gn
@@ -0,0 +1,26 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("common") {
+ sources = [
+ "spellcheck_bdict_language.h",
+ "spellcheck_common.cc",
+ "spellcheck_common.h",
+ "spellcheck_features.cc",
+ "spellcheck_features.h",
+ "spellcheck_marker.h",
+ "spellcheck_message_generator.cc",
+ "spellcheck_message_generator.h",
+ "spellcheck_messages.h",
+ "spellcheck_result.h",
+ "spellcheck_switches.cc",
+ "spellcheck_switches.h",
+ ]
+
+ deps = [
+ "//base:i18n",
+ "//ipc",
+ "//third_party/icu",
+ ]
+}