1// 2// Copyright (C) 2023 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 17package { 18 default_applicable_licenses: ["Android-Apache-2.0"], 19} 20 21cc_library_shared { 22 name: "libberberis_proxy_libcamera2ndk", 23 defaults: ["berberis_proxy_library_defaults"], 24 header_libs: ["jni_headers"], 25 srcs: [":native_bridge_proxy_libcamera2ndk_files"], 26 shared_libs: [ 27 "libcamera2ndk", 28 ], 29} 30 31cc_library_static { 32 name: "libberberis_emulated_libcamera2ndk_api_checker", 33 defaults: ["berberis_defaults_64"], 34 host_supported: false, 35 srcs: [ 36 ":native_bridge_proxy_libcamera2ndk_api_checker_files", 37 ], 38 header_libs: [ 39 "jni_headers", 40 "libberberis_base_headers", 41 "libberberis_guest_state_headers", 42 "libberberis_runtime_primitives_headers", 43 ], 44 shared_libs: [ 45 "libcamera2ndk", 46 ], 47} 48