• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import("//build/ohos.gni")
2
3## Build expat.a {{{
4config("expat_config") {
5  visibility = [ ":*" ]
6
7  include_dirs = [
8  ]
9
10  cflags = [
11    "-DXML_POOR_ENTROPY",
12    "-Wno-sign-compare",
13  ]
14}
15
16config("expat_public_config") {
17  include_dirs = [
18    ".",
19    "lib",
20  ]
21
22  defines = [ "XML_STATIC" ]
23}
24
25ohos_static_library("expat") {
26  sources = [
27    "lib/expat.h",
28    "lib/xmlparse.c",
29    "lib/xmlrole.c",
30    "lib/xmltok.c",
31  ]
32
33  configs = [
34    ":expat_config",
35  ]
36
37  public_configs = [
38    ":expat_public_config",
39  ]
40
41  deps = [
42  ]
43
44  public_deps = [
45  ]
46}
47## Build expat.a }}}
48