Skip to content
Snippets Groups Projects
Commit 519b54d8 authored by yangbill's avatar yangbill Committed by Automerger Merge Worker
Browse files

Convert external/v4l2_codec2/tests using Android.bp am: 69678074 am: 77152681

parents 0378da79 77152681
No related branches found
No related tags found
No related merge requests found
ifneq ($(filter external/v4l2_codec2,$(PRODUCT_SOONG_NAMESPACES)),)
include $(call all-subdir-makefiles)
endif
\ No newline at end of file
// Copyright 2019 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package {
// See: http://go/android-license-faq
default_applicable_licenses: [
"external_v4l2_codec2_license",
],
}
android_test {
name: "C2E2ETest",
srcs: [
"src/**/*.java",
],
resource_dirs: ["res"],
sdk_version: "26",
jni_libs: [
"libcodectest",
],
compile_multilib: "both",
dist: {
targets: [
"dist_files",
],
},
}
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SDK_VERSION := 26
LOCAL_SRC_FILES := \
$(call all-java-files-under, src) \
LOCAL_RESOURCE_DIR := \
$(LOCAL_PATH)/res \
LOCAL_MULTILIB := both
LOCAL_PACKAGE_NAME := C2E2ETest
LOCAL_LICENSE_KINDS := SPDX-license-identifier-BSD legacy_unencumbered
LOCAL_LICENSE_CONDITIONS := notice unencumbered
LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../../NOTICE
LOCAL_JNI_SHARED_LIBRARIES := libcodectest
LOCAL_MODULE_TAGS := tests
c2_e2e_test_apk := $(call intermediates-dir-for,APPS,C2E2ETest)/package.apk
$(call dist-for-goals,dist_files,$(c2_e2e_test_apk):C2E2ETest.apk)
include $(BUILD_PACKAGE)
include $(call all-makefiles-under,$(LOCAL_PATH))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment