1// 2// Copyright (C) 2021 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// This project defines a module named libc2plugin_store which is installed into 17// $OUT/vendor/lib/libc2plugin_store.so. Although the module can be overridden, 18// the output filename cannot (b/204136549). 19// 20// See README.md for how to use the implementation from v4l2_codec2. 21soong_namespace { 22 // No imports 23} 24 25package { 26 default_applicable_licenses: ["external_v4l2_codec2_license"], 27} 28 29// Added automatically by a large-scale-change that took the approach of 30// 'apply every license found to every target'. While this makes sure we respect 31// every license restriction, it may not be entirely correct. 32// 33// e.g. GPL in an MIT project might only apply to the contrib/ directory. 34// 35// Please consider splitting the single license below into multiple licenses, 36// taking care not to lose any license_kind information, and overriding the 37// default license using the 'licenses: [...]' property on targets as needed. 38// 39// For unused files, consider creating a 'fileGroup' with "//visibility:private" 40// to attach the license to, and including a comment whether the files may be 41// used in the current project. 42// See: http://go/android-license-faq 43license { 44 name: "external_v4l2_codec2_license", 45 visibility: [":__subpackages__"], 46 license_kinds: [ 47 "SPDX-license-identifier-BSD", 48 "legacy_unencumbered", 49 ], 50 license_text: [ 51 "NOTICE", 52 ], 53}