mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 02:42:35 +00:00
A change is being made so that sandboxed genrules need to add a dependency on the targets of the symlinks they use. In this case, the symlink isn't necessary, and we can just depend on the audio_effects_conf_V2_0 genrule instead. Bug: 307824623 Test: m audio_effects_conf_V4_0 Change-Id: I6ddaa81e08d7c4a9c29412b11a08f1d6b88689b5
18 lines
524 B
Plaintext
18 lines
524 B
Plaintext
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "hardware_interfaces_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["hardware_interfaces_license"],
|
|
}
|
|
|
|
genrule {
|
|
name: "audio_effects_conf_V4_0",
|
|
srcs: [":audio_effects_conf_V2_0"],
|
|
out: [
|
|
"audio_effects_conf_V4_0.xsd",
|
|
],
|
|
cmd: "cp -f $(in) $(out)",
|
|
}
|