aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
blob: 65a767677b377d67c7403ffb905634356e179391 (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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
// Copyright (C) 2009 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//

// Gtest builds 2 libraries: libgtest and libgtest_main. libgtest
// contains most of the code (assertions...) and libgtest_main just
// provide a common main to run the test (ie if you link against
// libgtest_main you won't/should not provide a main() entry point.
//
// We build these 2 libraries for the target device and for the host if
// it is running linux and using ASTL.
//

// TODO: The targets below have some redundancy. Check if we cannot
// condense them using function(s) for the common code.

cc_defaults {
    name: "libgtest_defaults",
    local_include_dirs: [
        "include",
    ],
    export_include_dirs: [
        "include",
    ],
    cflags: ["-Wno-missing-field-initializers"],
    cppflags: ["-std=gnu++98"],
}

cc_defaults {
    name: "libgtest_host_defaults",

    target: {
        windows: {
            enabled: true,
        },
    },
}

//######################################################################
// gtest lib for the NDK

cc_library_static {
    name: "libgtest_ndk",
    defaults: ["libgtest_defaults"],

    sdk_version: "9",
    stl: "stlport_static",

    srcs: ["src/gtest-all.cc"],
}

//######################################################################
// gtest_main for the NDK

cc_library_static {
    name: "libgtest_main_ndk",
    defaults: ["libgtest_defaults"],

    sdk_version: "9",
    stl: "stlport_static",

    srcs: ["src/gtest_main.cc"],
}

//#######################################################################
// gtest lib for the NDK, with libc++

cc_library_static {
    name: "libgtest_ndk_libcxx",
    defaults: ["libgtest_defaults"],

    sdk_version: "9",
    stl: "c++_static",

    srcs: ["src/gtest-all.cc"],
}

//#######################################################################
// gtest_main for the NDK, with libc++

cc_library_static {
    name: "libgtest_main_ndk_libcxx",
    defaults: ["libgtest_defaults"],

    sdk_version: "9",
    stl: "c++_static",

    srcs: ["src/gtest_main.cc"],
}

//#######################################################################
// gtest lib for the NDK, with gnustl

cc_library_static {
    name: "libgtest_ndk_gnustl",
    defaults: ["libgtest_defaults"],

    sdk_version: "9",
    stl: "gnustl_static",

    srcs: ["src/gtest-all.cc"],
}

//#######################################################################
// gtest_main for the NDK, with gnustl
cc_library_static {
    name: "libgtest_main_ndk_gnustl",
    defaults: ["libgtest_defaults"],

    sdk_version: "9",
    stl: "gnustl_static",

    srcs: ["src/gtest_main.cc"],
}

//######################################################################
// gtest lib

cc_library_static {
    name: "libgtest",
    defaults: ["libgtest_defaults", "libgtest_host_defaults"],

    host_supported: true,
    clang: true,

    srcs: ["src/gtest-all.cc"],

    sanitize: {
        never: true,
    },
    rtti: true,
}

//######################################################################
// gtest_main lib

cc_library_static {
    name: "libgtest_main",
    defaults: ["libgtest_defaults", "libgtest_host_defaults"],

    host_supported: true,
    clang: true,

    srcs: ["src/gtest_main.cc"],

    sanitize: {
        never: true,
    },
}

// Legacy libraries for makefiles that refer to libgtest_host

cc_library_host_static {
    name: "libgtest_host",
    whole_static_libs: ["libgtest"],
    defaults: ["libgtest_host_defaults"],
}

cc_library_host_static {
    name: "libgtest_main_host",
    whole_static_libs: ["libgtest_main"],
    defaults: ["libgtest_host_defaults"],
}


// Test for gtest. Run using 'runtest'.
// The linux build and tests are run under valgrind by 'runtest'.

cc_test {
    name: "gtest",
    cflags: ["-Wno-empty-body"],
    local_include_dirs: ["include"],
    host_supported: true,
    test_per_src: true,
    srcs: [
        "test/gtest_all_test.cc",
        "test/gtest-death-test_test.cc",
        "test/gtest_environment_test.cc",
        "test/gtest-listener_test.cc",
        "test/gtest_main_unittest.cc",
        "test/gtest_no_test_unittest.cc",
        "test/gtest-param-test2_test.cc",
        "test/gtest_premature_exit_test.cc",
        "test/gtest_repeat_test.cc",
        "test/gtest_sole_header_test.cc",
        "test/gtest_stress_test.cc",
        "test/gtest-unittest-api_test.cc",

        // We don't have exceptions.
        //"test/gtest-death-test_ex_test.cc",
        //"test/gtest_throw_on_failure_ex_test.cc",
        // We don't have tr1::tuple.
        //"test/gtest-tuple_test.cc",
        // These don't build.
        //"test/gtest-param-test_test.cc",
        //"test/gtest-printers_test.cc",
    ],
}

cc_library_static {
    name: "libgtest_prod",
    host_supported: true,
    srcs: [],
    export_include_dirs: ["include"],
    target: {
        windows: {
            enabled: true,
        },
    },
}