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      'target_name': 'convert_dict_lib',
12      'product_name': 'convert_dict',
13      'type': 'static_library',
14      'variables': { 'enable_wexit_time_destructors': 1, },
15      'include_dirs': [
16        '../../../',
17      ],
18      'dependencies': [
19        '../../../base/base.gyp:base',
20      ],
21      'sources': [
22        'aff_reader.cc',
23        'aff_reader.h',
24        'dic_reader.cc',
25        'dic_reader.h',
26        'hunspell_reader.cc',
27        'hunspell_reader.h',
28      ],
29    },
30    {
31      'target_name': 'convert_dict',
32      'type': 'executable',
33      'variables': { 'enable_wexit_time_destructors': 1, },
34      'dependencies': [
35        '../../../base/base.gyp:base',
36        '../../../base/base.gyp:base_i18n',
37        '../../../third_party/hunspell/hunspell.gyp:hunspell',
38        'convert_dict_lib',
39      ],
40      'sources': [
41        'convert_dict.cc',
42      ],
43    },
44  ],
45}
46