blob: 488009f812b5c848ddb6372573aef9f9704cbf5b [file] [log] [blame]
Steven Moreland2e87adc2018-08-20 19:47:00 -07001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Bob Badour3c538232021-02-12 21:26:48 -080017package {
18 // See: http://go/android-license-faq
19 // A large-scale-change added 'default_applicable_licenses' to import
20 // all of the 'license_kinds' from "frameworks_native_libs_binder_ndk_license"
21 // to get the below license kinds:
22 // SPDX-license-identifier-Apache-2.0
23 default_applicable_licenses: ["frameworks_native_libs_binder_ndk_license"],
24}
25
Steven Moreland2e87adc2018-08-20 19:47:00 -070026cc_defaults {
27 name: "test_libbinder_ndk_defaults",
28 shared_libs: [
29 "libbase",
30 ],
31 strip: {
32 none: true,
33 },
34 cflags: [
35 "-O0",
36 "-g",
37 ],
38}
39
40cc_library_static {
41 name: "test_libbinder_ndk_library",
42 defaults: ["test_libbinder_ndk_defaults"],
43 export_include_dirs: ["include"],
44 shared_libs: ["libbinder_ndk"],
45 export_shared_lib_headers: ["libbinder_ndk"],
46 srcs: ["iface.cpp"],
47}
48
49cc_defaults {
50 name: "test_libbinder_ndk_test_defaults",
51 defaults: ["test_libbinder_ndk_defaults"],
Steven Moreland13f84662020-07-23 21:30:41 +000052 // critical that libbinder/libbinder_ndk are shared for VTS
Steven Moreland2e87adc2018-08-20 19:47:00 -070053 shared_libs: [
Jooyung Han1f65e772019-03-07 16:55:04 +090054 "libandroid_runtime_lazy",
Steven Moreland2e87adc2018-08-20 19:47:00 -070055 "libbase",
56 "libbinder",
Steven Morelanda9fff712019-08-08 16:00:12 -070057 "libbinder_ndk",
Steven Moreland2e87adc2018-08-20 19:47:00 -070058 "libutils",
59 ],
60 static_libs: [
Steven Moreland2e87adc2018-08-20 19:47:00 -070061 "test_libbinder_ndk_library",
62 ],
63}
64
Steven Moreland507547f2018-11-06 15:58:05 -080065// This test is a unit test of the low-level API that is presented here,
66// specifically the parts which are outside of the NDK. Actual users should
67// also instead use AIDL to generate these stubs. See android.binder.cts.
Steven Moreland2e87adc2018-08-20 19:47:00 -070068cc_test {
Steven Morelandf92c1fa2020-01-24 13:25:15 -080069 name: "libbinder_ndk_unit_test",
Steven Moreland2e87adc2018-08-20 19:47:00 -070070 defaults: ["test_libbinder_ndk_test_defaults"],
Steven Morelandf92c1fa2020-01-24 13:25:15 -080071 srcs: ["libbinder_ndk_unit_test.cpp"],
Steven Moreland169bb8f2020-01-29 10:21:35 -080072 static_libs: [
Ruchir Rastogicc7a7462020-01-31 14:29:15 -080073 "IBinderNdkUnitTest-cpp",
Steven Moreland169bb8f2020-01-29 10:21:35 -080074 "IBinderNdkUnitTest-ndk_platform",
75 ],
Steven Moreland326086c2021-06-16 18:30:42 +000076 test_suites: [
77 "general-tests",
78 "vts",
79 ],
Steven Morelandc5fe7e42020-01-29 10:42:58 -080080 require_root: true,
Steven Moreland2e87adc2018-08-20 19:47:00 -070081}
Steven Morelandd2017342019-07-22 14:30:11 -070082
83cc_test {
84 name: "binderVendorDoubleLoadTest",
85 vendor: true,
86 srcs: [
87 "binderVendorDoubleLoadTest.cpp",
88 ],
89 static_libs: [
90 "IBinderVendorDoubleLoadTest-cpp",
91 "IBinderVendorDoubleLoadTest-ndk_platform",
Steven Moreland82c97cf2019-10-16 16:29:27 -070092 "libbinder_aidl_test_stub-ndk_platform",
Steven Morelandd2017342019-07-22 14:30:11 -070093 ],
Steven Moreland13f84662020-07-23 21:30:41 +000094 // critical that libbinder/libbinder_ndk are shared for VTS
Steven Morelandd2017342019-07-22 14:30:11 -070095 shared_libs: [
96 "libbase",
97 "libbinder",
98 "libbinder_ndk",
99 "libutils",
100 ],
Steven Moreland105db552021-06-02 21:50:33 +0000101 test_suites: ["general-tests"],
Colin Cross9d436882020-09-08 14:24:55 -0700102 require_root: true,
Steven Morelandd2017342019-07-22 14:30:11 -0700103}
104
105aidl_interface {
106 name: "IBinderVendorDoubleLoadTest",
Jiyong Park701fa1a2020-04-13 12:55:44 +0900107 unstable: true,
Steven Moreland45277992020-01-16 16:04:33 -0800108 vendor: true,
Steven Morelandd2017342019-07-22 14:30:11 -0700109 srcs: [
110 "IBinderVendorDoubleLoadTest.aidl",
111 ],
112}
Steven Moreland169bb8f2020-01-29 10:21:35 -0800113
114aidl_interface {
115 name: "IBinderNdkUnitTest",
Jiyong Park701fa1a2020-04-13 12:55:44 +0900116 unstable: true,
Steven Moreland169bb8f2020-01-29 10:21:35 -0800117 srcs: [
118 "IBinderNdkUnitTest.aidl",
119 "IEmpty.aidl",
120 ],
Steven Moreland326086c2021-06-16 18:30:42 +0000121 backend: {
122 java: {
123 enabled: false,
124 },
125 ndk: {
126 apps_enabled: false,
127 },
128 },
Steven Moreland169bb8f2020-01-29 10:21:35 -0800129}