summaryrefslogtreecommitdiff
path: root/drm
diff options
context:
space:
mode:
authorAnton Hansson <hansson@google.com>2021-03-30 11:30:23 +0100
committerAnton Hansson <hansson@google.com>2021-03-30 12:26:55 +0100
commit9b2c4a650b4eec3b091f6621e4c9267e9e062da3 (patch)
treeb924cad763f3fd5348e8a4c36f1666fa7bf27e20 /drm
parent459d9506eea5087661f905e21632c099250eec65 (diff)
downloadbase-9b2c4a650b4eec3b091f6621e4c9267e9e062da3.tar.gz
Move framework java filegroups into subdirectories
All the java code used to build the framework jar and run metalava was previously defined in the toplevel Android.bp files. Move these into the subdirs where the source actually lives. This simplifies the rules themselves (no path and needless prefix) and declutters the top level Android.bp. Test: m Change-Id: I97086e309eacb879d16facb8497d9940fa5ddaf6
Diffstat (limited to 'drm')
-rw-r--r--drm/java/Android.bp5
1 files changed, 5 insertions, 0 deletions
diff --git a/drm/java/Android.bp b/drm/java/Android.bp
new file mode 100644
index 000000000000..54e1a8c0dff8
--- /dev/null
+++ b/drm/java/Android.bp
@@ -0,0 +1,5 @@
+filegroup {
+ name: "framework-drm-sources",
+ srcs: ["**/*.java"],
+ visibility: ["//frameworks/base"],
+}