summaryrefslogtreecommitdiffstats
path: root/third_party/liblouis
Commit message (Collapse)AuthorAgeFilesLines
* [MIPS] Define liblouis_nacl nexe for MIPSpetarj@mips.com2014-03-121-0/+4
| | | | | | | | | | | Add missing case for MIPS in liblouis_nacl_wrapper_nacl. BUG= https://code.google.com/p/nativeclient/issues/detail?id=2275 TEST= Chromium buildbots Review URL: https://codereview.chromium.org/197613002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256639 0039d316-1c4b-4281-b951-d872f2087c98
* Fix braille backtranslation size limit.plundblad@chromium.org2014-02-281-9/+31
| | | | | | | | | | | | | | | | | Sometimes, a contracted string results in more than twice the size of the input being the result of back translation. This is especially true for small strings (e.g. a single letter k translating to knowledgable). This CL uses a similar approach as https://codereview.chromium.org/124403002 expanding the allocated buffer, working around liblouis api quirks. BUG=310285 R=dtseng@chromium.org Review URL: https://codereview.chromium.org/183653002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254023 0039d316-1c4b-4281-b951-d872f2087c98
* Use _nacl suffix for NaCl targets in src/ppapisergeyu@chromium.org2014-02-271-1/+1
| | | | | | | | | BUG=345453 TBR=dtseng@chromium.org, bradnelson@chromium.org, Review URL: https://codereview.chromium.org/180393003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@253667 0039d316-1c4b-4281-b951-d872f2087c98
* Rename _untrusted targets in third_party to use _nacl suffixsergeyu@chromium.org2014-01-161-9/+9
| | | | | | | | | | | Previously NaCl targets were using _untrusted suffix which makes the purpose of these targets hard to understand. This CL renames some targets in src/third_party. Also removed toolsets field from modp_b64_nacl.gyp Review URL: https://codereview.chromium.org/138673002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245176 0039d316-1c4b-4281-b951-d872f2087c98
* Allow braille translation result to be larger than twice the size of the input.plundblad@chromium.org2014-01-071-14/+36
| | | | | | | | | | | | | | The liblouis wrapper used to allocate an output buffer that was twice as big as the number of input characters. There are situations where this is not enough. The new approach is to retry with a larger buffer up to a certain limit. R=dtseng@chromium.org BUG=none Review URL: https://codereview.chromium.org/124403002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243251 0039d316-1c4b-4281-b951-d872f2087c98
* Reland issue 27748003: Moves the ChromeVox extension into the Chrome source ↵dtseng@google.com2013-12-051-19/+16
| | | | | | | | | | | | tree. BUG=309130 TEST=run ChromeVox on Aura. TBR=robliao Review URL: https://codereview.chromium.org/100513003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239068 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 238830 "Moves the ChromeVox extension into the Chrome sou..."robliao@chromium.org2013-12-051-16/+19
| | | | | | | | | | | | | | | | | | Reason: Breaks check_perms (Executable bits need updating) and runhooks (third_party/liblouis/liblouis_untrusted.gyp appears to be in the wrong location) > Moves the ChromeVox extension into the Chrome source tree. > > BUG=309130 > TEST=run ChromeVox on Aura. > R=dmazzoni@chromium.org, erg@chromium.org, thakis@chromium.org, zelidrag@chromium.org > > Review URL: https://codereview.chromium.org/27748003 TBR=dtseng@google.com Review URL: https://codereview.chromium.org/105813003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238855 0039d316-1c4b-4281-b951-d872f2087c98
* Moves the ChromeVox extension into the Chrome source tree.dtseng@google.com2013-12-051-19/+16
| | | | | | | | | | BUG=309130 TEST=run ChromeVox on Aura. R=dmazzoni@chromium.org, erg@chromium.org, thakis@chromium.org, zelidrag@chromium.org Review URL: https://codereview.chromium.org/27748003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238830 0039d316-1c4b-4281-b951-d872f2087c98
* Fix permission: third_party/liblouis/liblouis_list_tables.pykinuko@chromium.org2013-12-041-0/+0
| | | | | | | | | BUG=none TBR=plundblad@chromium.org Review URL: https://codereview.chromium.org/103673002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238565 0039d316-1c4b-4281-b951-d872f2087c98
* Build liblouis_nacl using gyp.plundblad@chromium.org2013-12-0418-1/+7485
| | | | | | | | | | | | | | Tries to reland 237638 after fixing compiler warnings from a more recent compiler used on arm. This cl ports the nacl wrapper to the chromium build system and adds local modifications from Chromevox to liblouis. The native library and braille tables are copied to the location in the resources output directory where chromevox can pick them up. BUG=316353 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=237638 Review URL: https://codereview.chromium.org/67283007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238548 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 237638 "Build liblouis_nacl using gyp."ckocagil@chromium.org2013-11-2818-7477/+1
| | | | | | | | | | | | | | | | > Build liblouis_nacl using gyp. > > This cl ports the nacl wrapper to the chromium build system and adds local modifications from Chromevox to liblouis. The native library and braille tables are copied to the location in the resources output directory where chromevox can pick them up. > > BUG=316353 > > Review URL: https://codereview.chromium.org/67283007 TBR=plundblad@chromium.org Review URL: https://codereview.chromium.org/93783003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237670 0039d316-1c4b-4281-b951-d872f2087c98
* fix +x on liblouis_list_tables.pyscottmg@chromium.org2013-11-281-0/+0
| | | | | | | | TBR=plundblad@chromium.org,chrisgao@chromium.org Review URL: https://codereview.chromium.org/93193002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237648 0039d316-1c4b-4281-b951-d872f2087c98
* Build liblouis_nacl using gyp.plundblad@chromium.org2013-11-2718-1/+7477
| | | | | | | | | | This cl ports the nacl wrapper to the chromium build system and adds local modifications from Chromevox to liblouis. The native library and braille tables are copied to the location in the resources output directory where chromevox can pick them up. BUG=316353 Review URL: https://codereview.chromium.org/67283007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237638 0039d316-1c4b-4281-b951-d872f2087c98
* Add liblouis to third_party.plundblad@chromium.org2013-11-093-0/+49
liblouis is a braille translation library that is used inside the ChromeVox extension, where it is included as a native client binary. This adjust the lincense check scripts for the headers used in this library. BUG=303795,316353 Review URL: https://codereview.chromium.org/35683004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234051 0039d316-1c4b-4281-b951-d872f2087c98