| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |