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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « chrome/chrome.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'includes': [
7 '../../../build/common.gypi',
8 ],
9 'targets': [
10 {
11 'target_name': 'hunspell',
12 'type': 'static_library',
13 'dependencies': [
14 '../../../base/base.gyp:base',
15 '../../../third_party/icu38/icu38.gyp:icuuc',
16 ],
17 'defines': [
18 'HUNSPELL_CHROME_CLIENT',
19 'OPENOFFICEORG',
Scott Hess - ex-Googler 2009/02/26 14:38:07 SConscript also defines CHROME_SPELL. I do not kn
20 ],
21 'sources': [
22 'google/bdict.h',
23 'google/bdict_reader.cc',
24 'google/bdict_reader.h',
25 'google/bdict_writer.cc',
26 'google/bdict_writer.h',
27 'src/hunspell/affentry.cxx',
28 'src/hunspell/affentry.hxx',
29 'src/hunspell/affixmgr.cxx',
30 'src/hunspell/affixmgr.hxx',
31 'src/hunspell/atypes.hxx',
32 'src/hunspell/baseaffix.hxx',
33 'src/hunspell/csutil.cxx',
34 'src/hunspell/csutil.hxx',
35 'src/hunspell/dictmgr.cxx',
36 'src/hunspell/dictmgr.hxx',
37 'src/hunspell/hashmgr.cxx',
38 'src/hunspell/hashmgr.hxx',
39 'src/hunspell/htypes.hxx',
40 'src/hunspell/hunspell.cxx',
41 'src/hunspell/hunspell.h',
42 'src/hunspell/hunspell.hxx',
43 'src/hunspell/langnum.hxx',
44 'src/hunspell/suggestmgr.cxx',
45 'src/hunspell/suggestmgr.hxx',
46 'src/hunspell/utf_info.hxx',
47 'src/parsers/textparser.cxx',
48 'src/parsers/textparser.hxx',
Scott Hess - ex-Googler 2009/02/26 14:38:07 SConscript doesn't mention them, but there are a c
49 ],
50 'direct_dependent_settings': {
51 'defines': [
52 'HUNSPELL_CHROME_CLIENT',
53 'USE_HUNSPELL',
54 ],
55 },
56 },
57 ],
58 }
OLDNEW
« 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