OLD | NEW |
(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', |
| 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', |
| 49 ], |
| 50 'direct_dependent_settings': { |
| 51 'defines': [ |
| 52 'HUNSPELL_CHROME_CLIENT', |
| 53 'USE_HUNSPELL', |
| 54 ], |
| 55 }, |
| 56 }, |
| 57 ], |
| 58 } |
OLD | NEW |