aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
blob: 6934b7b01e352a5951a25b16b7a79b2717b325ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
cc_library_static {
    name: "libtinyxml2",
    host_supported: true,

    srcs: ["tinyxml2.cpp"],

    target: {
        android: {
            cflags: [
                // LOG_TO_ANDROID_LOGCAT
                "-DDEBUG",
                "-DANDROID_NDK",
            ],
        },
    },

    export_include_dirs: ["."],
}