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

Unified Diff: third_party/hunspell_new/BUILD.gn

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/using_hunspell.vsprops ('k') | third_party/hunspell_new/COPYING » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/hunspell_new/BUILD.gn
diff --git a/third_party/hunspell_new/BUILD.gn b/third_party/hunspell_new/BUILD.gn
deleted file mode 100644
index 4d5a9557374c8b6963d6759f5827154b60ae3e26..0000000000000000000000000000000000000000
--- a/third_party/hunspell_new/BUILD.gn
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 2014 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.
-
-config("hunspell_config") {
- defines = [
- "HUNSPELL_STATIC",
- "HUNSPELL_CHROME_CLIENT",
- "USE_HUNSPELL",
- ]
-}
-
-source_set("hunspell_new") {
- 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",
- ]
-
- configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ "//build/config/compiler:no_chromium_code" ]
- direct_dependent_configs = [ ":hunspell_config" ]
-
- defines = [ "OPENOFFICEORG" ]
-
- deps = [
- "//base",
- "//third_party/icu",
- ]
-
- cflags = []
-
- if (is_win) {
- cflags += [
- # TODO(jschuh): http://crbug.com/167187 size_t -> int
- "/wd4267",
- ]
- }
-
- if (is_posix && !is_mac) {
- cflags += [
- "-Wno-unused-value",
- "-Wno-unused-variable",
- "-Wno-write-strings",
- ]
- }
-
- if (is_posix && !is_mac && !is_ios) {
- cflags += [
- # affentry.hxx has NULL as default parameter for a FLAG in two
- # places.
- "-Wno-conversion-null",
- ]
- }
-
- if (is_clang) {
- cflags += [
- # 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",
- ]
- }
-}
« no previous file with comments | « third_party/hunspell/using_hunspell.vsprops ('k') | third_party/hunspell_new/COPYING » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698