summaryrefslogtreecommitdiff
path: root/chromium/chrome/tools/convert_dict/BUILD.gn
blob: d210e2b760771b133cdad1f6fb5b1db71487a14a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//build/config/features.gni")

source_set("lib") {

  if (!use_qt) {
    # Production code shouldn't be depending on this.
    testonly = true
  }

  sources = [
    "aff_reader.cc",
    "aff_reader.h",
    "dic_reader.cc",
    "dic_reader.h",
    "hunspell_reader.cc",
    "hunspell_reader.h",
  ]
  configs += [ "//build/config/compiler:wexit_time_destructors" ]
  deps = [
    "//base",
    "//base:i18n",
  ]
}

if (use_qt) {
  shared_library("convert_dict") {
    create_pri_file = true
    configs += [ "//build/config/compiler:wexit_time_destructors" ]
    deps = [
      ":lib",
      "//base",
      "//base:i18n",
      "//build/config:exe_and_shlib_deps",
      "//third_party/hunspell",
    ]
  }
} else {

  executable("convert_dict") {
    # Production code shouldn't be depending on this.
    testonly = true



    sources = [
      "convert_dict.cc",
    ]

    configs += [ "//build/config/compiler:wexit_time_destructors" ]
    deps = [
      ":lib",
      "//base",
      "//base:i18n",
      "//build/config:exe_and_shlib_deps",
      "//build/win:default_exe_manifest",
      "//third_party/hunspell",
    ]
  }
}