summaryrefslogtreecommitdiff
path: root/android/Android.bp
blob: f0a6da61fae15ab04b298cbb18886522b2aab1ae (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
98
99
100
101
102
103
104
105
106
107
108
package {
    default_applicable_licenses: ["external_sqlite_android_license"],
}

// Added automatically by a large-scale-change
// See: http://go/android-license-faq
license {
    name: "external_sqlite_android_license",
    visibility: [":__subpackages__"],
    license_kinds: [
        "SPDX-license-identifier-Apache-2.0",
    ],
    license_text: [
        "NOTICE",
    ],
}

cc_defaults {
    name: "libsqlite3_android_defaults",
    host_supported: true,
    cflags: [
        "-Wall",
        "-Werror",
        "-Wno-unused-function",
        "-Wno-unused-variable",
    ],
    srcs: [
        "PhoneNumberUtils.cpp",
        "OldPhoneNumberUtils.cpp",
        "sqlite3_android.cpp",
    ],
    include_dirs: ["external/sqlite/dist"],
    shared_libs: [
        "liblog",
    ],
    export_include_dirs: ["."],
}

cc_library_static {
    name: "libsqlite3_android",
    defaults: ["libsqlite3_android_defaults"],
    vendor_available: true,
    native_bridge_supported: true,
    target: {
        android: {
            cflags: [
                "-DSQLITE_ENABLE_ICU",
                "-DSQLITE_DEFAULT_LEGACY_ALTER_TABLE",
            ],
            shared_libs: [
                "libandroidicu",
            ],
        },
        host: {
            cflags: ["-DSQLITE_ENABLE_ICU"],
            shared_libs: [
                "libicui18n",
                "libicuuc",
            ],
        },
        windows: {
            enabled: true,
        },
        vendor: {
            cflags: ["-USQLITE_ENABLE_ICU"],
            exclude_shared_libs: ["libandroidicu"],
        },
    },
    apex_available: [
        "//apex_available:platform",
        "com.android.virt",
    ],

}

// This static library is variant of libsqlite3_android built without the ICU
// extension.  The library is supposed to be used in environments where the ICU
// extension is not needed and the dependency to ICU (which is as large as 60+
// MB) is not desirable, like microdroid.
cc_library_static {
    name: "libsqlite3_android_noicu",
    defaults: ["libsqlite3_android_defaults"],
    // Not define SQLITE_ENABLE_ICU
    apex_available: [
        "//apex_available:platform",
        "com.android.os.statsd",
        "test_com.android.os.statsd",
    ],
    min_sdk_version: "apex_inherit",
}

//       The formal test for phone_number_compare() is in DataBaseGeneralTest.java
//       (as of 2009-08-02), in which phone_number_compare() is tested via sqlite's custom
//       function "PHONE_NUMBER_COMPARE".
cc_test {
    host_supported: true,
    name: "libsqlite3_phone_number_utils_test",
    cflags: [
        "-Wall",
        "-Werror",
    ],
    srcs: [
        "OldPhoneNumberUtils.cpp",
        "OldPhoneNumberUtilsTest.cpp",
        "PhoneNumberUtils.cpp",
        "PhoneNumberUtilsTest.cpp",
    ],
}