summaryrefslogtreecommitdiff
path: root/chromium/third_party/angle/third_party/vulkan-tools/src/cube/android/cube-with-layers/custom_rules.xml
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-01-27 13:07:46 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-01-27 12:54:30 +0000
commitcabfcdd1db482729ded525feae56911a99792773 (patch)
treeed0b084bddac50f47511344e491a098e86645a14 /chromium/third_party/angle/third_party/vulkan-tools/src/cube/android/cube-with-layers/custom_rules.xml
parentc551f43206405019121bd2b2c93714319a0a3300 (diff)
downloadqtwebengine-chromium-cabfcdd1db482729ded525feae56911a99792773.tar.gz
BASELINE: Update Chromium with submodule DEPS
Added files after fixing recursive DEPS parsing Change-Id: I05383f062094522c19311c0f61c1a1257224f0ef Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'chromium/third_party/angle/third_party/vulkan-tools/src/cube/android/cube-with-layers/custom_rules.xml')
-rw-r--r--chromium/third_party/angle/third_party/vulkan-tools/src/cube/android/cube-with-layers/custom_rules.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/chromium/third_party/angle/third_party/vulkan-tools/src/cube/android/cube-with-layers/custom_rules.xml b/chromium/third_party/angle/third_party/vulkan-tools/src/cube/android/cube-with-layers/custom_rules.xml
new file mode 100644
index 00000000000..0ca5933ed5c
--- /dev/null
+++ b/chromium/third_party/angle/third_party/vulkan-tools/src/cube/android/cube-with-layers/custom_rules.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="NativeActivity" default="help">
+
+<property name="cubeWithLayersDir" location="../libs-with-layers" />
+<property name="cubeDir" location="../libs" />
+<property name="layersDir" location="../../../build-android/libs" />
+
+<echo>VkCubeWithLayers: Creating libs-with-layers</echo>
+<mkdir dir="${cubeWithLayersDir}"/>
+
+<echo>VkCubeWithLayers: Copying libs from demos/android</echo>
+<copy todir="${cubeWithLayersDir}">
+<fileset dir="${cubeDir}"/>
+</copy>
+
+<echo>VkCubeWithLayers: Copying layers from build-android</echo>
+<copy todir="${cubeWithLayersDir}">
+<fileset dir="${layersDir}"/>
+</copy>
+
+<!-- Point ndk-build at the libs-with-layers common dir -->
+<echo>VkCubeWithLayers: Overriding native.libs.absolute.dir with ${cubeWithLayersDir}</echo>
+<property name="native.libs.absolute.dir" location="${cubeWithLayersDir}" />
+
+</project>