Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 442bb382 authored by Avichal Rakesh's avatar Avichal Rakesh Committed by Android (Google) Code Review
Browse files

Merge "Camera: Migrate VTS tests to AIDL" into tm-dev

parents 976698dd 362242f7
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
# Bug component: 41727

# Camera team
include platform/frameworks/av:/camera/OWNERS

+5 −1
Original line number Diff line number Diff line
@@ -66,5 +66,9 @@ cc_test {
        "libhidlmemory",
        "libgralloctypes",
    ],
    test_suites: ["general-tests", "vts"],
    test_suites: [
        "general-tests",
        "vts",
    ],

}
+75 −0
Original line number Diff line number Diff line
//
// 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 {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "hardware_interfaces_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-Apache-2.0
    default_applicable_licenses: ["hardware_interfaces_license"],
}

cc_test {
    name: "VtsAidlHalCameraProvider_TargetTest",
    defaults: [
        "VtsHalTargetTestDefaults",
        "use_libaidlvintf_gtest_helper_static",
    ],
    srcs: [
        "camera_aidl_test.cpp",
        "device_cb.cpp",
        "empty_device_cb.cpp",
        "simple_device_cb.cpp",
        "torch_provider_cb.cpp",
        "VtsAidlHalCameraProvider_TargetTest.cpp",
    ],

    // TODO(b/64437680): Assume these are always available on the device.
    shared_libs: [
        "libbinder_ndk",
        "libcamera_metadata",
        "libcutils",
        "libfmq",
        "libgui",
        "libui",
        "libbase",
        "android.hardware.common-V2-ndk",
        "android.hardware.common.fmq-V1-ndk",
        "android.hardware.graphics.mapper@2.0",
        "android.hardware.graphics.mapper@3.0",
        "android.hardware.graphics.mapper@4.0",
    ],

    // Statically link to libs not guaranteed to be present on the device.
    static_libs: [
        "android.hardware.camera.common@1.0-helper",
        "android.hardware.camera.common-V1-ndk",
        "android.hardware.camera.device-V1-ndk",
        "android.hardware.camera.metadata-V1-ndk",
        "android.hardware.camera.provider-V1-ndk",
        "android.hardware.graphics.common-V3-ndk",
        "android.hidl.allocator@1.0",
        "libgrallocusage",
        "libhidlmemory",
        "libgralloctypes",
        "libaidlcommonsupport",
    ],
    test_suites: [
        "general-tests",
        "vts",
    ],
}
+33 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- 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.
-->
<configuration description="Runs VtsAidlHalCameraProvider_TargetTest.">
    <option name="test-suite-tag" value="apct" />
    <option name="test-suite-tag" value="apct-native" />

    <target_preparer class="com.android.tradefed.targetprep.RootTargetPreparer">
    </target_preparer>

    <target_preparer class="com.android.tradefed.targetprep.PushFilePreparer">
        <option name="cleanup" value="true" />
        <option name="push" value="VtsAidlHalCameraProvider_TargetTest->/data/local/tmp/VtsAidlHalCameraProvider_TargetTest" />
    </target_preparer>

    <test class="com.android.tradefed.testtype.GTest" >
        <option name="native-test-device-path" value="/data/local/tmp" />
        <option name="module-name" value="VtsAidlHalCameraProvider_TargetTest" />
        <option name="native-test-timeout" value="1800000"/> <!-- 30 min -->
    </test>
</configuration>
 No newline at end of file
+6 −0
Original line number Diff line number Diff line
# Camera team
include platform/frameworks/av:/camera/OWNERS

# VTS team
yim@google.com
zhuoyao@google.com
 No newline at end of file
Loading