| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'hunspell', | 8 'target_name': 'hunspell', |
| 9 'type': '<(library)', | 9 'type': '<(library)', |
| 10 'msvs_guid': 'D5E8DCB2-9C61-446F-8BEE-B18CA0E0936E', | 10 'msvs_guid': 'D5E8DCB2-9C61-446F-8BEE-B18CA0E0936E', |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 '../../base/base.gyp:base', | 12 '../../base/base.gyp:base', |
| 13 '../icu/icu.gyp:icuuc', | 13 '../icu/icu.gyp:icuuc', |
| 14 ], | 14 ], |
| 15 'defines': [ | 15 'defines': [ |
| 16 'HUNSPELL_STATIC', | 16 'HUNSPELL_STATIC', |
| 17 'HUNSPELL_CHROME_CLIENT', | 17 'HUNSPELL_CHROME_CLIENT', |
| 18 'OPENOFFICEORG', | 18 'OPENOFFICEORG', |
| 19 ], | 19 ], |
| 20 'sources': [ | 20 'sources': [ |
| 21 'google/bdict.cc', |
| 21 'google/bdict.h', | 22 'google/bdict.h', |
| 22 'google/bdict_reader.cc', | 23 'google/bdict_reader.cc', |
| 23 'google/bdict_reader.h', | 24 'google/bdict_reader.h', |
| 24 'google/bdict_writer.cc', | 25 'google/bdict_writer.cc', |
| 25 'google/bdict_writer.h', | 26 'google/bdict_writer.h', |
| 26 'src/hunspell/affentry.cxx', | 27 'src/hunspell/affentry.cxx', |
| 27 'src/hunspell/affentry.hxx', | 28 'src/hunspell/affentry.hxx', |
| 28 'src/hunspell/affixmgr.cxx', | 29 'src/hunspell/affixmgr.cxx', |
| 29 'src/hunspell/affixmgr.hxx', | 30 'src/hunspell/affixmgr.hxx', |
| 30 'src/hunspell/atypes.hxx', | 31 'src/hunspell/atypes.hxx', |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 'cflags': [ | 68 'cflags': [ |
| 68 '-Wno-unused-value', | 69 '-Wno-unused-value', |
| 69 '-Wno-unused-variable', | 70 '-Wno-unused-variable', |
| 70 '-Wno-write-strings', | 71 '-Wno-write-strings', |
| 71 ], | 72 ], |
| 72 }], | 73 }], |
| 73 ], | 74 ], |
| 74 }, | 75 }, |
| 75 ], | 76 ], |
| 76 } | 77 } |
| OLD | NEW |