summaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-07 05:11:20 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-07 05:11:20 +0000
commitafe01b9ada4725faf757de4cf1440286e1630fc4 (patch)
tree95cf4a3e5b2c223ac65c353250d65a2badd3a4a6 /BUILD
parent53c7fbc07bf73d95053389ddac0e312fdc9f2e36 (diff)
parent0419b9f2da9a9f813e151256d2f365e19daa5788 (diff)
downloadMusic-afe01b9ada4725faf757de4cf1440286e1630fc4.tar.gz
Change-Id: I20e364c6a429afe6cfdbe9cac95927a12441413f
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD8
1 files changed, 6 insertions, 2 deletions
diff --git a/BUILD b/BUILD
index bb1e5f0..ea0af15 100644
--- a/BUILD
+++ b/BUILD
@@ -1,9 +1,13 @@
-load("@rules_android//rules:rules.bzl", "android_binary", "android_library")
+load("//build/bazel/rules/android:rules.bzl", "android_binary")
android_binary(
name = "Music",
srcs = glob(["src/**/*.java"]),
custom_package = "com.android.music",
manifest = "AndroidManifest.xml",
- deps = ["//packages/apps/Music/kotlin:MusicResources"],
+ # TODO(b/179889880): this manual BUILD file exists because these resources,
+ # if listed as files, would cross package boundary.
+ resource_files = ["//packages/apps/Music/kotlin:MusicResourceFiles"],
+ sdk_version = "current",
+ target_compatible_with = ["//build/bazel/platforms/os:android"],
)