Home | History | Annotate | only in /external/chromium_org/third_party/ots
Up to higher level directory
NameDateSize
.ignores05-Aug-201525
BUILD.gn05-Aug-20151.8K
codereview.settings05-Aug-2015150
gyp_ots05-Aug-2015983
include/05-Aug-2015
INSTALL05-Aug-2015864
LICENSE05-Aug-20151.5K
ots-common.gypi05-Aug-20151.7K
ots-standalone.gyp05-Aug-20154.3K
ots.gyp05-Aug-2015836
ots.target.darwin-arm.mk05-Aug-20157.6K
ots.target.darwin-arm64.mk05-Aug-20157.1K
ots.target.darwin-mips.mk05-Aug-20157.2K
ots.target.darwin-mips64.mk05-Aug-20157.2K
ots.target.darwin-x86.mk05-Aug-20157.2K
ots.target.darwin-x86_64.mk05-Aug-20157.2K
ots.target.linux-arm.mk05-Aug-20157.6K
ots.target.linux-arm64.mk05-Aug-20157.1K
ots.target.linux-mips.mk05-Aug-20157.2K
ots.target.linux-mips64.mk05-Aug-20157.2K
ots.target.linux-x86.mk05-Aug-20157.2K
ots.target.linux-x86_64.mk05-Aug-20157.2K
README05-Aug-2015884
src/05-Aug-2015
test/05-Aug-2015
third_party/05-Aug-2015
tools/05-Aug-2015

README

      1 Sanitiser for OpenType
      2 ----------------------
      3 
      4 (Idea from Alex Russell)
      5 
      6 The CSS font-face property[1] is great for web typography. Having to use images
      7 in order to get the correct typeface is a great sadness; one should be able to
      8 use vectors.
      9 
     10 However, the TrueType renderers on many platforms have never been part of the
     11 attack surface before and putting them on the front line is a scary proposition.
     12 Esp on platforms like Windows where it's a closed-source blob running with high
     13 privilege.
     14 
     15 Thus, the OpenType Sanitiser (OTS) is designed to parse and serialise OpenType
     16 files, validating them and sanitising them as it goes.
     17 
     18 Building:
     19 
     20 The included ots.gyp file is for building within the Chromium only. In the
     21 test/ directory you'll find a SConstruct file which can be used with scons to
     22 build a standalone version.
     23 
     24 [1] http://www.w3.org/TR/CSS2/fonts.html#font-descriptions
     25