Fix macos xcprivacy manifest copy location (flutter/engine#56010)

Cherry-pick the beta branch privacy location fix https://github.com/flutter/engine/pull/55938 back to master so this doesn't regress in the next beta.

This is for https://github.com/flutter/flutter/issues/157016 on master.  Can be merged once the framework test https://github.com/flutter/flutter/pull/157318 merges.

[C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style
This commit is contained in:
Jenn Magder 2024-10-22 13:46:12 -07:00 committed by GitHub
parent c5ad234e11
commit 2f467bae78

View File

@ -253,7 +253,8 @@ copy("copy_framework_module_map") {
copy("copy_framework_privacy_manifest") {
visibility = [ ":*" ]
sources = [ "framework/PrivacyInfo.xcprivacy" ]
outputs = [ "$_flutter_framework_dir/PrivacyInfo.xcprivacy" ]
outputs =
[ "$_flutter_framework_dir/Versions/A/Resources/PrivacyInfo.xcprivacy" ]
}
action("copy_framework_headers") {