aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Lee <rgl@google.com>2022-01-06 09:36:48 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-01-06 09:36:48 +0000
commitdf5996d0e12bb4e38f8f6b60428485cd6b8a2baa (patch)
treee34d91c437d4d20a50f1cabdf84935b3eb677f75
parente921d3e16ae8a5e32d958d065c11e8b633a0aef1 (diff)
parent323a9f3b94d29534053811e61cfeca0469395f11 (diff)
downloadv4l2_codec2-df5996d0e12bb4e38f8f6b60428485cd6b8a2baa.tar.gz
Put v4l2_codec2 underneath a soong namespace am: f83441a3c9 am: ae52ea56b2 am: bce2d851c3 am: 323a9f3b94
Original change: https://android-review.googlesource.com/c/platform/external/v4l2_codec2/+/1928162 Change-Id: I94e1c2cdadeb9200025e36b06c45ff9f96b1fa45
-rw-r--r--Android.bp11
-rw-r--r--tests/Android.mk2
2 files changed, 12 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp
index 7f53aec..b541ecd 100644
--- a/Android.bp
+++ b/Android.bp
@@ -13,6 +13,15 @@
// See the License for the specific language governing permissions and
// limitations under the License.
+// This project defines a module named libc2plugin_store which is installed into
+// $OUT/vendor/lib/libc2plugin_store.so. Although the module can be overridden,
+// the output filename cannot (b/204136549).
+//
+// See README.md for how to use the implementation from v4l2_codec2.
+soong_namespace {
+ // No imports
+}
+
package {
default_applicable_licenses: ["external_v4l2_codec2_license"],
}
@@ -41,4 +50,4 @@ license {
license_text: [
"NOTICE",
],
-}
+} \ No newline at end of file
diff --git a/tests/Android.mk b/tests/Android.mk
index 5053e7d..7697ee4 100644
--- a/tests/Android.mk
+++ b/tests/Android.mk
@@ -1 +1,3 @@
+ifneq ($(filter external/v4l2_codec2,$(PRODUCT_SOONG_NAMESPACES)),)
include $(call all-subdir-makefiles)
+endif \ No newline at end of file