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
| // Copyright 2005 The Android Open Source Project
| //
| // Android.mk for TinyXml.
| //
| // Add -DTIXML_USE_STL to CFLAGS to use STL.
| //
|
| // For the device
| // =====================================================
| cc_library_shared {
| name: "libtinyxml",
|
| srcs: [
| "tinyxml.cpp",
| "tinyxmlparser.cpp",
| "tinyxmlerror.cpp",
| "tinystr.cpp",
| ],
|
| vendor: true,
|
| cflags: [
| "-Wno-implicit-fallthrough",
| "-Wno-logical-op-parentheses",
| "-Wno-missing-braces",
| "-Wno-undefined-bool-conversion",
| "-Werror",
| ],
| }
|
|