blob: 978d7d13ac44afe94dc9f41c82083ed6bb1b6821 [file] [log] [blame]
Dan Willemsen7ba4a262018-11-19 18:00:54 -08001// Copyright 2005 The Android Open Source Project
Dan Willemsen7ba4a262018-11-19 18:00:54 -08002
Dan Willemsen7ba4a262018-11-19 18:00:54 -08003cc_library_shared {
4 name: "libtinyxml",
5
6 srcs: [
7 "tinyxml.cpp",
8 "tinyxmlparser.cpp",
9 "tinyxmlerror.cpp",
10 "tinystr.cpp",
11 ],
12
13 vendor: true,
14
Elliott Hughesd656da42019-10-18 08:02:18 -070015 // DO NOT USE!
16 // Use tinyxml2 (or expat or libxml2 or...) instead.
17 visibility: ["//vendor:__subpackages__"],
18
Dan Willemsen7ba4a262018-11-19 18:00:54 -080019 cflags: [
20 "-Wno-implicit-fallthrough",
21 "-Wno-logical-op-parentheses",
22 "-Wno-missing-braces",
23 "-Wno-undefined-bool-conversion",
24 "-Werror",
25 ],
26}