-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Split out libdeepspeech into _android and _jre, for the respective versions - Moved settings.gradle to both versions, and modified them appropriately - Removed .so files, which were accidentally included in the previous commit, same goes for Makefile.original - Updated .gitignore's to work with the new structure - libdeepspeech_android is exactly as it is currently in mozilla:master - Updated Makefile to work with the new structure
- Loading branch information
TheDutchMC
committed
Feb 2, 2021
1 parent
ff12a73
commit 6bbc27a
Showing
8 changed files
with
34 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,22 @@ | ||
#Native libs | ||
libdeepspeech/libs/* | ||
libdeepspeech/*.so | ||
libdeepspeech_android/libs/* | ||
!libdeepspeech_android/libs/.gitignore | ||
libdeepspeech_android/*.so | ||
|
||
#Gradle | ||
.gradle/ | ||
libdeepspeech/build/ | ||
|
||
#Make/CMake | ||
Makefile/ | ||
libdeepspeech/CMakeFiles/ | ||
libdeepspeech/cmake_install.cmake | ||
libdeepspeech/CMakeCache.txt | ||
libdeepspeech/Makefile | ||
|
||
#SWIG | ||
jni/*.cpp | ||
jni/*.o | ||
|
||
#Setup.sh output | ||
#Collected files by make | ||
build/ | ||
|
||
#Autogenerated java files by SWIG | ||
libdeepspeech/src/main/java/org/deepspeech/libdeepspeech/*.java | ||
!libdeepspeech/src/main/java/org/deepspeech/libdeepspeech/DeepSpeechModel.java | ||
!libdeepspeech/src/main/java/org/deepspeech/libdeepspeech/DeepSpeechStreamingState.java= | ||
libdeepspeech_android/src/main/java/org/deepspeech/libdeepspeech/*.java | ||
!libdeepspeech_android/src/main/java/org/deepspeech/libdeepspeech/DeepSpeechModel.java | ||
!libdeepspeech_android/src/main/java/org/deepspeech/libdeepspeech/DeepSpeechStreamingState.java |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include ':libdeepspeech_android' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
src/main/java/org/deepspeech/libdeepspeech/*.java | ||
!src/main/java/org/deepspeech/libdeepspeech/DeepSpeechModel.java | ||
!src/main/java/org/deepspeech/libdeepspeech/DeepSpeechStreamingState.java | ||
|
||
CMakeFiles/ | ||
cmake_install.cmake | ||
CMakeCache.txt | ||
Makefile | ||
|
||
build/ | ||
|
||
libs/* | ||
*.so |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include ':libdeepspeech_jre' |
This file was deleted.
Oops, something went wrong.