Files
hardware_interfaces/automotive/remoteaccess/hal/default/Android.bp
Kiyoung Kim 4a518d2e1e Reapply "Define vintf_fragments as modules"
Previous commit was reverted as it removed wifi vintf fragment from
devices, which was caused by 'no_full_install' property from
vintf_fragment module. This change relands the change, with removing
no_full_install property from the vintf_fragment module

Bug: 322089980
Test: aosp_cf_x86_64_phone build succeeded
Test: mokey_go32 build contains
/vendor/etc/vintf/manifest/android.hardware.wifi.supplicant.xml file

Change-Id: I523ce570068b180805b65f984a0d6def0612db87
2024-09-04 15:55:29 +09:00

134 lines
3.3 KiB
Plaintext

/*
* Copyright (C) 2022 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.
*/
package {
default_team: "trendy_team_aaos_framework",
default_applicable_licenses: ["Android-Apache-2.0"],
}
cc_defaults {
name: "remote-access-hal-defaults",
vendor: true,
relative_install_path: "hw",
srcs: [
"src/RemoteAccessImpl.cpp",
],
whole_static_libs: [
"RemoteAccessService",
],
static_libs: [
"BindToDeviceSocketMutatorLib",
],
shared_libs: [
"libbinder_ndk",
"libutils",
"libprotobuf-cpp-full",
],
defaults: [
"vhalclient_defaults",
"BindToDeviceSocketMutatorDefaults",
],
cflags: [
// This is already included in BindToDeviceSocketMutatorDefaults but
// might be overridden by vhalclient_defaults.
"-Wno-unused-parameter",
],
}
cc_binary {
name: "android.hardware.automotive.remoteaccess@V2-default-service",
defaults: ["remote-access-hal-defaults"],
init_rc: ["remoteaccess-default-service.rc"],
vintf_fragment_modules: ["remoteaccess-default-service.xml"],
}
cc_binary {
name: "android.hardware.automotive.remoteaccess@V2-tcu-test-service",
defaults: ["remote-access-hal-defaults"],
init_rc: ["remoteaccess-tcu-test-service.rc"],
vintf_fragment_modules: ["remoteaccess-default-service.xml"],
}
vintf_fragment {
name: "remoteaccess-default-service.xml",
src: "remoteaccess-default-service.xml",
vendor: true,
}
cc_library {
name: "RemoteAccessService",
vendor_available: true,
local_include_dirs: ["include"],
export_include_dirs: ["include"],
srcs: [
"src/RemoteAccessService.cpp",
],
whole_static_libs: [
"android.hardware.automotive.remoteaccess-V2-ndk",
"wakeup_client_protos",
"libvhalclient",
],
defaults: [
"vhalclient_defaults",
],
shared_libs: [
"libbase",
"libbinder_ndk",
"libcutils",
"liblog",
"libutils",
"libgrpc++",
"libprotobuf-cpp-full",
],
cflags: [
"-Wno-unused-parameter",
],
}
cc_fuzz {
name: "android.hardware.automotive.remoteaccess@V2-default-service.aidl_fuzzer",
srcs: ["fuzzer/fuzzer.cpp"],
whole_static_libs: [
"RemoteAccessService",
],
static_libs: [
"libgtest",
"libgmock",
],
shared_libs: [
"libbase",
"libbinder_ndk",
"liblog",
"libutils",
"libgrpc++",
"libprotobuf-cpp-full",
],
defaults: [
"vhalclient_defaults",
"service_fuzzer_defaults",
],
cflags: [
"-Wno-unused-parameter",
"-DGRPC_SERVICE_ADDRESS=\"localhost:50051\"",
],
fuzz_config: {
cc: [
"shanyu@google.com",
],
},
}