OLD | NEW |
| (Empty) |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'variables': { | |
7 'chromium_code': 1, | |
8 }, | |
9 'targets': [ | |
10 { | |
11 # GN version: //chrome/tools/convert_dict:lib | |
12 'target_name': 'convert_dict_lib', | |
13 'product_name': 'convert_dict', | |
14 'type': 'static_library', | |
15 'variables': { 'enable_wexit_time_destructors': 1, }, | |
16 'include_dirs': [ | |
17 '../../../', | |
18 ], | |
19 'dependencies': [ | |
20 '../../../base/base.gyp:base', | |
21 ], | |
22 'sources': [ | |
23 'aff_reader.cc', | |
24 'aff_reader.h', | |
25 'dic_reader.cc', | |
26 'dic_reader.h', | |
27 'hunspell_reader.cc', | |
28 'hunspell_reader.h', | |
29 ], | |
30 }, | |
31 { | |
32 'target_name': 'convert_dict', | |
33 'type': 'executable', | |
34 'variables': { 'enable_wexit_time_destructors': 1, }, | |
35 'dependencies': [ | |
36 '../../../base/base.gyp:base', | |
37 '../../../base/base.gyp:base_i18n', | |
38 '../../../third_party/hunspell/hunspell.gyp:hunspell', | |
39 'convert_dict_lib', | |
40 ], | |
41 'sources': [ | |
42 'convert_dict.cc', | |
43 ], | |
44 }, | |
45 ], | |
46 } | |
OLD | NEW |