summaryrefslogtreecommitdiffstats
path: root/third_party/libxslt/BUILD.gn
blob: 3f27c5de5e688bbc0d72ee27af05f9418a3afeaf (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# Copyright 2014 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.

config("libxslt_config") {
  defines = [ "LIBXSLT_STATIC" ]
  include_dirs = [ "." ]
}

config("libxslt_warnings") {
  if (is_clang) {
    cflags = [
      # libxslt stores a char[3] in a `const unsigned char*`.
      "-Wno-pointer-sign",

      # xsltDefaultRegion and xsltCalibrateTimestamps are only
      # used with certain preprocessor defines set.
      "-Wno-unused-function",
    ]
  }
}

static_library("libxslt") {
  sources = [
    "libxslt/attributes.c",
    "libxslt/attributes.h",
    "libxslt/attrvt.c",
    "libxslt/documents.c",
    "libxslt/documents.h",
    "libxslt/extensions.c",
    "libxslt/extensions.h",
    "libxslt/extra.c",
    "libxslt/extra.h",
    "libxslt/functions.c",
    "libxslt/functions.h",
    "libxslt/imports.c",
    "libxslt/imports.h",
    "libxslt/keys.c",
    "libxslt/keys.h",
    "libxslt/libxslt.h",
    "libxslt/namespaces.c",
    "libxslt/namespaces.h",
    "libxslt/numbers.c",
    "libxslt/numbersInternals.h",
    "libxslt/pattern.c",
    "libxslt/pattern.h",
    "libxslt/preproc.c",
    "libxslt/preproc.h",
    "libxslt/security.c",
    "libxslt/security.h",
    "libxslt/templates.c",
    "libxslt/templates.h",
    "libxslt/transform.c",
    "libxslt/transform.h",
    "libxslt/trio.h",
    "libxslt/triodef.h",
    "libxslt/variables.c",
    "libxslt/variables.h",
    "libxslt/win32config.h",
    "libxslt/xslt.c",
    "libxslt/xslt.h",
    "libxslt/xsltInternals.h",
    "libxslt/xsltconfig.h",
    "libxslt/xsltexports.h",
    "libxslt/xsltlocale.c",
    "libxslt/xsltlocale.h",
    "libxslt/xsltutils.c",
    "libxslt/xsltutils.h",
    "libxslt/xsltwin32config.h",
    "linux/config.h",
    "mac/config.h",
    "win32/config.h",
  ]

  configs -= [ "//build/config/compiler:chromium_code" ]
  configs += [
    "//build/config/compiler:no_chromium_code",

    # Must be after no_chromium_code for warning flags to be ordered correctly.
    ":libxslt_warnings",
  ]
  public_configs = [ ":libxslt_config" ]

  cflags = []
  if (is_linux || is_android) {
    include_dirs = [ "linux" ]
  } else if (is_win) {
    include_dirs = [ "win32" ]
    cflags += [ "/wd4267" ]  # size_t to int.
  } else if (is_mac) {
    include_dirs = [ "mac" ]
  }

  deps = [
    "//third_party/libxml",
  ]
}