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

Unified Diff: chrome/third_party/hunspell/hunspell.gyp

Issue 28177: Add hunspell.gyp and add spellchecker.cc to chrome.gyp:browser (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years, 10 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/chrome.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/third_party/hunspell/hunspell.gyp
===================================================================
--- chrome/third_party/hunspell/hunspell.gyp (revision 0)
+++ chrome/third_party/hunspell/hunspell.gyp (revision 0)
@@ -0,0 +1,58 @@
+# Copyright (c) 2009 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.
+
+{
+ 'includes': [
+ '../../../build/common.gypi',
+ ],
+ 'targets': [
+ {
+ 'target_name': 'hunspell',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../../../base/base.gyp:base',
+ '../../../third_party/icu38/icu38.gyp:icuuc',
+ ],
+ 'defines': [
+ 'HUNSPELL_CHROME_CLIENT',
+ 'OPENOFFICEORG',
Scott Hess - ex-Googler 2009/02/26 14:38:07 SConscript also defines CHROME_SPELL. I do not kn
+ ],
+ 'sources': [
+ 'google/bdict.h',
+ 'google/bdict_reader.cc',
+ 'google/bdict_reader.h',
+ 'google/bdict_writer.cc',
+ 'google/bdict_writer.h',
+ 'src/hunspell/affentry.cxx',
+ 'src/hunspell/affentry.hxx',
+ 'src/hunspell/affixmgr.cxx',
+ 'src/hunspell/affixmgr.hxx',
+ 'src/hunspell/atypes.hxx',
+ 'src/hunspell/baseaffix.hxx',
+ 'src/hunspell/csutil.cxx',
+ 'src/hunspell/csutil.hxx',
+ 'src/hunspell/dictmgr.cxx',
+ 'src/hunspell/dictmgr.hxx',
+ 'src/hunspell/hashmgr.cxx',
+ 'src/hunspell/hashmgr.hxx',
+ 'src/hunspell/htypes.hxx',
+ 'src/hunspell/hunspell.cxx',
+ 'src/hunspell/hunspell.h',
+ 'src/hunspell/hunspell.hxx',
+ 'src/hunspell/langnum.hxx',
+ 'src/hunspell/suggestmgr.cxx',
+ 'src/hunspell/suggestmgr.hxx',
+ 'src/hunspell/utf_info.hxx',
+ 'src/parsers/textparser.cxx',
+ 'src/parsers/textparser.hxx',
Scott Hess - ex-Googler 2009/02/26 14:38:07 SConscript doesn't mention them, but there are a c
+ ],
+ 'direct_dependent_settings': {
+ 'defines': [
+ 'HUNSPELL_CHROME_CLIENT',
+ 'USE_HUNSPELL',
+ ],
+ },
+ },
+ ],
+}
Property changes on: chrome/third_party/hunspell/hunspell.gyp
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/chrome.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698