1/* 2 * Copyright (C) 2022 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 // See: http://go/android-license-faq 19 default_applicable_licenses: ["Android-Apache-2.0"], 20} 21 22prebuilt_defaults { 23 name: "emu_camera_config_defaults", 24 relative_install_path: "config", 25 soc_specific: true, 26 installable: false, 27} 28 29prebuilt_etc { 30 name: "emu_camera_back.json", 31 src: "emu_camera_back.json", 32 defaults: ["emu_camera_config_defaults"], 33} 34 35prebuilt_etc { 36 name: "emu_camera_depth.json", 37 src: "emu_camera_depth.json", 38 defaults: ["emu_camera_config_defaults"], 39} 40 41prebuilt_etc { 42 name: "emu_camera_front.json", 43 src: "emu_camera_front.json", 44 defaults: ["emu_camera_config_defaults"], 45} 46 47prebuilt_etc { 48 name: "emu_camera_external.json", 49 src: "emu_camera_external.json", 50 defaults: ["emu_camera_config_defaults"], 51} 52