diff options
author | Aitor Camacho <aitor@lunarg.com> | 2023-03-07 20:32:25 +0100 |
---|---|---|
committer | Piotr Byszewski <piotr.byszewski@mobica.com> | 2023-03-30 18:31:46 +0000 |
commit | 51de70b948590f07d3b26f28aa991d61151c83e8 (patch) | |
tree | 4abe9f306e21b69f18d51cbe6d4ca8cb014d162a /scripts | |
parent | e5e42d95242dfa1e1989ba284796639824d45e04 (diff) | |
download | VK-GL-CTS-51de70b948590f07d3b26f28aa991d61151c83e8.tar.gz VK-GL-CTS-51de70b948590f07d3b26f28aa991d61151c83e8.tar.bz2 VK-GL-CTS-51de70b948590f07d3b26f28aa991d61151c83e8.zip |
Add all layer libs to apk
Apk requires all layer libs to be able to run them
Components: Framework
VK-GL-CTS issue: 4323
Change-Id: Ib5e06cc931ac27131464e003d68fc25f3adbfd52
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/android/build_apk.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/android/build_apk.py b/scripts/android/build_apk.py index b39d4b708..f721f5182 100644 --- a/scripts/android/build_apk.py +++ b/scripts/android/build_apk.py @@ -769,7 +769,8 @@ class AddNativeLibsToAPK (BuildStep): libFiles.append(libRelPath) if config.layers: - layersGlob = os.path.join(config.layers, abi, "libVkLayer_*.so") + # Need to copy everything in the layer folder + layersGlob = os.path.join(config.layers, abi, "*") libVkLayers = glob.glob(layersGlob) for layer in libVkLayers: layerFilename = os.path.basename(layer) |