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

Unified Diff: components/spellcheck.gypi

Issue 2166683003: Componentize spellcheck [1]: create component and move switches there. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update components/OWNERS Created 4 years, 5 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
Index: components/spellcheck.gypi
diff --git a/components/spellcheck.gypi b/components/spellcheck.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..7a017d2df0cb3b471077d6e61f7720fbede85a61
--- /dev/null
+++ b/components/spellcheck.gypi
@@ -0,0 +1,21 @@
+# Copyright (c) 2016 The Chromium Authors. All rights reserved.
Peter Beverloo 2016/07/22 12:45:24 nit: no (c)
timvolodine 2016/07/22 17:25:35 Done.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# GYP version: components:spellcheck.gypi:spellcheck_common
Peter Beverloo 2016/07/22 12:45:24 I don't understand this line- the GN version is re
timvolodine 2016/07/22 17:25:35 removed, done.
+{
+ 'targets': [
+ {
+ # GN version: //components/spellcheck/common
+ 'target_name': 'spellcheck_common',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'spellcheck/common/spellcheck_switches.cc',
+ 'spellcheck/common/spellcheck_switches.h',
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698