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

Side by Side Diff: chrome/third_party/hunspell/hunspell.gyp

Issue 40082: Changes spellcheck_unittest to read dictionaries directly from the src tree (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 'includes': [ 6 'includes': [
7 '../../../build/common.gypi', 7 '../../../build/common.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 29 matching lines...) Expand all
40 'src/hunspell/hunspell.cxx', 40 'src/hunspell/hunspell.cxx',
41 'src/hunspell/hunspell.h', 41 'src/hunspell/hunspell.h',
42 'src/hunspell/hunspell.hxx', 42 'src/hunspell/hunspell.hxx',
43 'src/hunspell/langnum.hxx', 43 'src/hunspell/langnum.hxx',
44 'src/hunspell/suggestmgr.cxx', 44 'src/hunspell/suggestmgr.cxx',
45 'src/hunspell/suggestmgr.hxx', 45 'src/hunspell/suggestmgr.hxx',
46 'src/hunspell/utf_info.hxx', 46 'src/hunspell/utf_info.hxx',
47 'src/parsers/textparser.cxx', 47 'src/parsers/textparser.cxx',
48 'src/parsers/textparser.hxx', 48 'src/parsers/textparser.hxx',
49 ], 49 ],
50 'copies': [
51 {
52 'destination': '<(PRODUCT_DIR)/Dictionaries',
53 'files': [
54 'dictionaries/en-US-1-2.bdic',
55 ],
56 },
57 ],
58 'direct_dependent_settings': { 50 'direct_dependent_settings': {
59 'defines': [ 51 'defines': [
60 'HUNSPELL_CHROME_CLIENT', 52 'HUNSPELL_CHROME_CLIENT',
61 'USE_HUNSPELL', 53 'USE_HUNSPELL',
62 ], 54 ],
63 }, 55 },
64 }, 56 },
65 ], 57 ],
66 } 58 }
OLDNEW
« no previous file with comments | « chrome/third_party/hunspell/copy_dictionary_files.rules ('k') | chrome/third_party/hunspell/hunspell.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698