blob: f2f4ca1e0437c8786f6e6b600881ccba88bfd037 [file] [log] [blame]
/*
* Copyright 2019 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.
*/
// This is an example of an empty Codec2.0 service.
//
// To use this, make a copy of this whole directory and rename modules
// accordingly. The contents of "vendor.cpp" and files in the subdirectory
// "seccomp_policy" may also need to be modified.
// Binary file for the service.
//
// The init_rc file contains the absolute path to this binary on the device.
// If the name of this module is modified, the content of the init_rc file has
// to be modified accordingly.
//
// The seccomp_policy file name and its content can be modified, but note that
// vendor.cpp also needs to be updated because it needs the absolute path to the
// seccomp policy file on the device.
soong_namespace {
imports:[
"hardware/samsung_slsi-linaro/graphics"
],
}
package {
default_applicable_licenses: ["hardware_samsung_slsi-linaro_exynos_c2service_license"],
default_visibility: [ "//visibility:private" ],
}
// Added automatically by a large-scale-change
// See: http://go/android-license-faq
license {
name: "hardware_samsung_slsi-linaro_exynos_c2service_license",
visibility: [":__subpackages__"],
license_kinds: [
"SPDX-license-identifier-Apache-2.0",
],
license_text: [
"NOTICE",
],
}
cc_binary {
name: "samsung.hardware.media.c2@1.1-default-service",
vendor: true,
relative_install_path: "hw",
init_rc: ["samsung.hardware.media.c2@1.1-default-service.rc"],
defaults: ["libcodec2-hidl-defaults"],
srcs: [
"vendor.cpp",
"ExynosIONUtils.cpp",
],
// minijail is used to protect against unexpected system calls.
shared_libs: [
"libavservices_minijail",
"libbinder",
"libion",
"libion_exynos",
],
required: ["samsung.hardware.media.c2@1.1-default-seccomp-policy"],
}
// seccomp policy file.
//
// This should be modified to suit the target device and architecture.
//
// Files in the "seccomp_policy" subdirectory are only provided as examples.
// They may not work on some devices and/or architectures without modification.
prebuilt_etc {
name: "samsung.hardware.media.c2@1.1-default-seccomp-policy",
vendor: true,
sub_dir: "seccomp_policy",
// If a specific architecture is targeted, multiple choices are not needed.
arch: {
arm: {
src: "seccomp_policy/android.hardware.media.c2@1.1-default-arm.policy",
},
arm64: {
src: "seccomp_policy/android.hardware.media.c2@1.1-default-arm64.policy",
},
x86: {
src: "seccomp_policy/android.hardware.media.c2@1.1-default-x86.policy",
},
x86_64: {
src: "seccomp_policy/android.hardware.media.c2@1.1-default-x86_64.policy",
},
},
// This may be removed.
required: ["crash_dump.policy"],
}