| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//testing/libfuzzer/fuzzer_test.gni") | 5 import("//testing/libfuzzer/fuzzer_test.gni") |
| 6 | 6 |
| 7 config("hunspell_config") { | 7 config("hunspell_config") { |
| 8 defines = [ | 8 defines = [ |
| 9 "HUNSPELL_STATIC", | 9 "HUNSPELL_STATIC", |
| 10 "HUNSPELL_CHROME_CLIENT", | 10 "HUNSPELL_CHROME_CLIENT", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 "google/bdict_writer.cc", | 27 "google/bdict_writer.cc", |
| 28 "google/bdict_writer.h", | 28 "google/bdict_writer.h", |
| 29 "src/hunspell/affentry.cxx", | 29 "src/hunspell/affentry.cxx", |
| 30 "src/hunspell/affentry.hxx", | 30 "src/hunspell/affentry.hxx", |
| 31 "src/hunspell/affixmgr.cxx", | 31 "src/hunspell/affixmgr.cxx", |
| 32 "src/hunspell/affixmgr.hxx", | 32 "src/hunspell/affixmgr.hxx", |
| 33 "src/hunspell/atypes.hxx", | 33 "src/hunspell/atypes.hxx", |
| 34 "src/hunspell/baseaffix.hxx", | 34 "src/hunspell/baseaffix.hxx", |
| 35 "src/hunspell/csutil.cxx", | 35 "src/hunspell/csutil.cxx", |
| 36 "src/hunspell/csutil.hxx", | 36 "src/hunspell/csutil.hxx", |
| 37 "src/hunspell/dictmgr.cxx", | |
| 38 "src/hunspell/dictmgr.hxx", | |
| 39 "src/hunspell/filemgr.cxx", | 37 "src/hunspell/filemgr.cxx", |
| 40 "src/hunspell/filemgr.hxx", | 38 "src/hunspell/filemgr.hxx", |
| 41 "src/hunspell/hashmgr.cxx", | 39 "src/hunspell/hashmgr.cxx", |
| 42 "src/hunspell/hashmgr.hxx", | 40 "src/hunspell/hashmgr.hxx", |
| 43 "src/hunspell/htypes.hxx", | 41 "src/hunspell/htypes.hxx", |
| 44 "src/hunspell/hunspell.cxx", | 42 "src/hunspell/hunspell.cxx", |
| 45 "src/hunspell/hunspell.h", | 43 "src/hunspell/hunspell.h", |
| 46 "src/hunspell/hunspell.hxx", | 44 "src/hunspell/hunspell.hxx", |
| 47 "src/hunspell/hunzip.cxx", | 45 "src/hunspell/hunzip.cxx", |
| 48 "src/hunspell/hunzip.hxx", | 46 "src/hunspell/hunzip.hxx", |
| 49 "src/hunspell/langnum.hxx", | 47 "src/hunspell/langnum.hxx", |
| 50 "src/hunspell/phonet.cxx", | 48 "src/hunspell/phonet.cxx", |
| 51 "src/hunspell/phonet.hxx", | 49 "src/hunspell/phonet.hxx", |
| 52 "src/hunspell/replist.cxx", | 50 "src/hunspell/replist.cxx", |
| 53 "src/hunspell/replist.hxx", | 51 "src/hunspell/replist.hxx", |
| 54 "src/hunspell/suggestmgr.cxx", | 52 "src/hunspell/suggestmgr.cxx", |
| 55 "src/hunspell/suggestmgr.hxx", | 53 "src/hunspell/suggestmgr.hxx", |
| 56 "src/hunspell/utf_info.hxx", | |
| 57 "src/hunspell/w_char.hxx", | 54 "src/hunspell/w_char.hxx", |
| 58 "src/parsers/textparser.cxx", | 55 "src/parsers/textparser.cxx", |
| 59 "src/parsers/textparser.hxx", | 56 "src/parsers/textparser.hxx", |
| 60 ] | 57 ] |
| 61 | 58 |
| 62 configs -= [ "//build/config/compiler:chromium_code" ] | 59 configs -= [ "//build/config/compiler:chromium_code" ] |
| 63 configs += [ | 60 configs += [ |
| 64 "//build/config/compiler:no_chromium_code", | 61 "//build/config/compiler:no_chromium_code", |
| 65 | 62 |
| 66 # Must be after no_chromium_code for warning flags to be ordered correctly. | 63 # Must be after no_chromium_code for warning flags to be ordered correctly. |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "fuzz/hunspell_fuzzer_hunspell_dictionary.h", | 115 "fuzz/hunspell_fuzzer_hunspell_dictionary.h", |
| 119 ] | 116 ] |
| 120 deps = [ | 117 deps = [ |
| 121 ":hunspell", | 118 ":hunspell", |
| 122 "//base:base", | 119 "//base:base", |
| 123 ] | 120 ] |
| 124 | 121 |
| 125 # This is a dictionary for the fuzzer, not a spellcheck dictionary. | 122 # This is a dictionary for the fuzzer, not a spellcheck dictionary. |
| 126 dict = "fuzz/hunspell.dict" | 123 dict = "fuzz/hunspell.dict" |
| 127 } | 124 } |
| OLD | NEW |