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

Unified Diff: third_party/hunspell/hunspell.gyp

Issue 2332843004: Remove GYP files. (Closed)
Patch Set: Merge Created 4 years, 3 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 | « third_party/harfbuzz-ng/harfbuzz.gyp ('k') | third_party/iaccessible2/iaccessible2.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/hunspell/hunspell.gyp
diff --git a/third_party/hunspell/hunspell.gyp b/third_party/hunspell/hunspell.gyp
deleted file mode 100644
index 29860af7e8f6845deb6546d9b532d4a8318f248b..0000000000000000000000000000000000000000
--- a/third_party/hunspell/hunspell.gyp
+++ /dev/null
@@ -1,93 +0,0 @@
-# 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.
-
-{
- 'targets': [
- {
- 'target_name': 'hunspell',
- 'type': 'static_library',
- 'msvs_guid': 'D5E8DCB2-9C61-446F-8BEE-B18CA0E0936E',
- 'dependencies': [
- '../../base/base.gyp:base',
- '../icu/icu.gyp:icuuc',
- ],
- 'defines': [
- 'HUNSPELL_STATIC',
- 'HUNSPELL_CHROME_CLIENT',
- 'OPENOFFICEORG',
- ],
- 'sources': [
- 'google/bdict.cc',
- '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/filemgr.cxx',
- 'src/hunspell/filemgr.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/hunzip.cxx',
- 'src/hunspell/hunzip.hxx',
- 'src/hunspell/langnum.hxx',
- 'src/hunspell/phonet.cxx',
- 'src/hunspell/phonet.hxx',
- 'src/hunspell/replist.cxx',
- 'src/hunspell/replist.hxx',
- 'src/hunspell/suggestmgr.cxx',
- 'src/hunspell/suggestmgr.hxx',
- 'src/hunspell/utf_info.hxx',
- 'src/hunspell/w_char.hxx',
- 'src/parsers/textparser.cxx',
- 'src/parsers/textparser.hxx',
- ],
- 'direct_dependent_settings': {
- 'defines': [
- 'HUNSPELL_STATIC',
- 'HUNSPELL_CHROME_CLIENT',
- 'USE_HUNSPELL',
- ],
- },
- 'variables': {
- 'clang_warning_flags': [
- # affentry.cxx has one `while ((p = nextchar(p)));` parsing loop.
- '-Wno-empty-body',
- # affentry.hxx has NULL as default parameter for a FLAG in two
- # places.
- '-Wno-null-conversion',
- # hunspell has unused private fields.
- '-Wno-unused-private-field',
- ],
- },
- # TODO(jschuh): http://crbug.com/167187 size_t -> int
- 'msvs_disabled_warnings': [ 4267 ],
- 'conditions': [
- ['os_posix == 1 and OS != "mac" and clang==0', {
- 'cflags': [
- '-Wno-unused-value',
- '-Wno-unused-variable',
- '-Wno-write-strings',
- # affentry.hxx has NULL as default parameter for a FLAG in two
- # places.
- '-Wno-conversion-null',
- ],
- }],
- ],
- },
- ],
-}
« no previous file with comments | « third_party/harfbuzz-ng/harfbuzz.gyp ('k') | third_party/iaccessible2/iaccessible2.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698