Jimmy Chen | a772e8b | 2019-01-04 17:25:04 +0800 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2019 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 | |
| 17 | cc_library_static { |
| 18 | name: "VtsHalWifiSupplicantV1_2TargetTestUtil", |
| 19 | defaults: ["VtsHalTargetTestDefaults"], |
| 20 | srcs: ["supplicant_hidl_test_utils_1_2.cpp"], |
| 21 | export_include_dirs: [ |
| 22 | "." |
| 23 | ], |
| 24 | static_libs: [ |
| 25 | "VtsHalWifiV1_0TargetTestUtil", |
| 26 | "VtsHalWifiSupplicantV1_0TargetTestUtil", |
| 27 | "VtsHalWifiSupplicantV1_1TargetTestUtil", |
| 28 | "android.hardware.wifi.supplicant@1.0", |
| 29 | "android.hardware.wifi.supplicant@1.1", |
| 30 | "android.hardware.wifi.supplicant@1.2", |
| 31 | "android.hardware.wifi@1.0", |
Jimmy Chen | a772e8b | 2019-01-04 17:25:04 +0800 | [diff] [blame] | 32 | "libgmock", |
| 33 | "libwifi-system", |
| 34 | "libwifi-system-iface", |
| 35 | ], |
| 36 | } |
| 37 | |
| 38 | cc_test { |
Hai Shalom | 998d736 | 2019-01-14 13:08:14 -0800 | [diff] [blame] | 39 | name: "VtsHalWifiSupplicantV1_2TargetTest", |
| 40 | defaults: ["VtsHalTargetTestDefaults"], |
| 41 | srcs: [ |
| 42 | "VtsHalWifiSupplicantV1_2TargetTest.cpp", |
| 43 | "supplicant_sta_iface_hidl_test.cpp", |
| 44 | "supplicant_sta_network_hidl_test.cpp", |
| 45 | ], |
| 46 | static_libs: [ |
| 47 | "VtsHalWifiV1_0TargetTestUtil", |
| 48 | "VtsHalWifiSupplicantV1_0TargetTestUtil", |
| 49 | "VtsHalWifiSupplicantV1_1TargetTestUtil", |
| 50 | "VtsHalWifiSupplicantV1_2TargetTestUtil", |
| 51 | "android.hardware.wifi.supplicant@1.0", |
| 52 | "android.hardware.wifi.supplicant@1.1", |
| 53 | "android.hardware.wifi.supplicant@1.2", |
Hai Shalom | a94e59a | 2019-12-20 14:29:47 -0800 | [diff] [blame^] | 54 | "android.hardware.wifi.supplicant@1.3", |
Hai Shalom | 998d736 | 2019-01-14 13:08:14 -0800 | [diff] [blame] | 55 | "android.hardware.wifi@1.0", |
| 56 | "android.hardware.wifi@1.1", |
Hai Shalom | 998d736 | 2019-01-14 13:08:14 -0800 | [diff] [blame] | 57 | "libgmock", |
| 58 | "libwifi-system", |
| 59 | "libwifi-system-iface", |
| 60 | ], |
| 61 | test_suites: ["general-tests"], |
| 62 | } |
| 63 | |
| 64 | cc_test { |
Jimmy Chen | a772e8b | 2019-01-04 17:25:04 +0800 | [diff] [blame] | 65 | name: "VtsHalWifiSupplicantP2pV1_2TargetTest", |
| 66 | defaults: ["VtsHalTargetTestDefaults"], |
| 67 | srcs: [ |
| 68 | "VtsHalWifiSupplicantV1_2TargetTest.cpp", |
| 69 | "supplicant_p2p_iface_hidl_test.cpp", |
| 70 | ], |
| 71 | static_libs: [ |
| 72 | "VtsHalWifiV1_0TargetTestUtil", |
| 73 | "VtsHalWifiSupplicantV1_0TargetTestUtil", |
| 74 | "VtsHalWifiSupplicantV1_1TargetTestUtil", |
| 75 | "VtsHalWifiSupplicantV1_2TargetTestUtil", |
| 76 | "android.hardware.wifi.supplicant@1.0", |
| 77 | "android.hardware.wifi.supplicant@1.1", |
| 78 | "android.hardware.wifi.supplicant@1.2", |
| 79 | "android.hardware.wifi@1.0", |
Hai Shalom | 998d736 | 2019-01-14 13:08:14 -0800 | [diff] [blame] | 80 | "android.hardware.wifi@1.1", |
Jimmy Chen | a772e8b | 2019-01-04 17:25:04 +0800 | [diff] [blame] | 81 | "libgmock", |
| 82 | "libwifi-system", |
| 83 | "libwifi-system-iface", |
| 84 | ], |
| 85 | } |
Hai Shalom | 998d736 | 2019-01-14 13:08:14 -0800 | [diff] [blame] | 86 | |