aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Luis Marti <joseluis.marti@gmail.com>2022-11-03 00:05:10 +0100
committerJose Luis Marti <joseluis.marti@gmail.com>2022-11-03 00:05:10 +0100
commit1e051007e44d410cb35b40b184f302806b750071 (patch)
tree1eeecd0bf8139d6505351443ad272b99465324f2
parent828e374f8a53b4be604f5f2f3412dfdcaf68d781 (diff)
[Android] remove google breakpad script
-rw-r--r--cmake/scripts/android/Install.cmake2
-rw-r--r--tools/android/packaging/make_symbols.sh6
2 files changed, 0 insertions, 8 deletions
diff --git a/cmake/scripts/android/Install.cmake b/cmake/scripts/android/Install.cmake
index 368b19f246..968ecdd9aa 100644
--- a/cmake/scripts/android/Install.cmake
+++ b/cmake/scripts/android/Install.cmake
@@ -11,8 +11,6 @@ configure_file(${CMAKE_SOURCE_DIR}/tools/android/packaging/Makefile.in
${CMAKE_BINARY_DIR}/tools/android/packaging/Makefile @ONLY)
configure_file(${CMAKE_SOURCE_DIR}/tools/android/packaging/gradle.properties
${CMAKE_BINARY_DIR}/tools/android/packaging/gradle.properties COPYONLY)
-configure_file(${CMAKE_SOURCE_DIR}/tools/android/packaging/make_symbols.sh
- ${CMAKE_BINARY_DIR}/tools/android/packaging/make_symbols.sh COPYONLY)
configure_file(${CMAKE_SOURCE_DIR}/tools/android/packaging/build.gradle
${CMAKE_BINARY_DIR}/tools/android/packaging/build.gradle COPYONLY)
configure_file(${CMAKE_SOURCE_DIR}/tools/android/packaging/gradlew
diff --git a/tools/android/packaging/make_symbols.sh b/tools/android/packaging/make_symbols.sh
deleted file mode 100644
index 7961ce4dab..0000000000
--- a/tools/android/packaging/make_symbols.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-FN=$(basename "$1")
-dump_syms "$1" > $FN.sym
-HASH=`head -n 1 $FN.sym | cut -d " " -f 4`
-mkdir -p symbols/$FN/$HASH
-mv $FN.sym symbols/$FN/$HASH
-echo "$FN.sym generated"