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

Unified Diff: components/spellcheck.gypi

Issue 1884583003: Create a spellcheck component that will allow any embedder to reuse common functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address reviewers' comments. Created 4 years, 8 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/components.gyp ('k') | components/spellcheck/common/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/spellcheck.gypi
diff --git a/components/spellcheck.gypi b/components/spellcheck.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..fd8f847da842bf63ade2e6ace1cf3a43f2d6c6bd
--- /dev/null
+++ b/components/spellcheck.gypi
@@ -0,0 +1,30 @@
+# 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.
+
+{
+ 'conditions': [
+ ['enable_spellcheck==1', {
+ 'targets': [
+ {
+ # GN: //components/spellcheck/common:spellcheck_common
+ 'target_name': 'spellcheck_common',
+ 'type': 'none',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../ipc/ipc.gyp:ipc',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ "spellcheck/common/spellcheck_bdict_language.h",
+ "spellcheck/common/spellcheck_marker.h",
+ "spellcheck/common/spellcheck_message.h",
+ "spellcheck/common/spellcheck_result.h",
+ ],
+ },
+ ],
+ }],
+ ],
+}
« no previous file with comments | « components/components.gyp ('k') | components/spellcheck/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698