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

Unified Diff: third_party/hunspell_new/hunspell.gyp

Issue 1135173004: Rename third_party/hunspell_new back to third_party/hunspell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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/hunspell_new/google/bdict_writer.cc ('k') | third_party/hunspell_new/hunspell.vsprops » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/hunspell_new/hunspell.gyp
diff --git a/third_party/hunspell_new/hunspell.gyp b/third_party/hunspell_new/hunspell.gyp
deleted file mode 100644
index cc09799ca74553026db72c33143300108668ac9c..0000000000000000000000000000000000000000
--- a/third_party/hunspell_new/hunspell.gyp
+++ /dev/null
@@ -1,95 +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',
- ],
- },
- # TODO(jschuh): http://crbug.com/167187 size_t -> int
- 'msvs_disabled_warnings': [ 4267 ],
- 'conditions': [
- ['os_posix == 1 and OS != "mac"', {
- 'cflags': [
- '-Wno-unused-value',
- '-Wno-unused-variable',
- '-Wno-write-strings',
- ],
- }],
- ['gcc_version >= 48', {
- 'cflags': [
- # affentry.hxx has NULL as default parameter for a FLAG in two
- # places.
- '-Wno-conversion-null',
- ],
- }],
- ],
- },
- ],
-}
« no previous file with comments | « third_party/hunspell_new/google/bdict_writer.cc ('k') | third_party/hunspell_new/hunspell.vsprops » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698