Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: test/SConstruct

Issue 6410047: OTS: Adds more layout common table supports.... (Closed) Base URL: http://ots.googlecode.com/svn/trunk/
Patch Set: '' Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/layout.cc ('k') | test/layout_common_table_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Build script for Linux 1 # Build script for Linux
2 # 2 #
3 # Usage: 3 # Usage:
4 # $ cd ots/test/ 4 # $ cd ots/test/
5 # $ scons -c # clean 5 # $ scons -c # clean
6 # $ scons # build 6 # $ scons # build
7 # 7 #
8 8
9 # Since the validator-checker tool might handle malicious font files, all harden ing options for recent g++/ld are enabled just in case. 9 # Since the validator-checker tool might handle malicious font files, all harden ing options for recent g++/ld are enabled just in case.
10 # See http://wiki.debian.org/Hardening for details. 10 # See http://wiki.debian.org/Hardening for details.
(...skipping 21 matching lines...) Expand all
32 '../src/name.cc', 32 '../src/name.cc',
33 '../src/os2.cc', 33 '../src/os2.cc',
34 '../src/ots.cc', 34 '../src/ots.cc',
35 '../src/post.cc', 35 '../src/post.cc',
36 '../src/prep.cc', 36 '../src/prep.cc',
37 '../src/vdmx.cc', 37 '../src/vdmx.cc',
38 '../src/vorg.cc' 38 '../src/vorg.cc'
39 ]) 39 ])
40 40
41 env.Program('../test/cff_type2_charstring_test.cc', LIBS = ['ots', 'gtest_main'] , LIBPATH = '../src') 41 env.Program('../test/cff_type2_charstring_test.cc', LIBS = ['ots', 'gtest_main'] , LIBPATH = '../src')
42 env.Program('../test/layout_common_table_test.cc', LIBS = ['ots', 'gtest_main'], LIBPATH = '../src')
42 env.Program('../test/ot-sanitise.cc', LIBS = ['ots'], LIBPATH='../src') 43 env.Program('../test/ot-sanitise.cc', LIBS = ['ots'], LIBPATH='../src')
43 env.Program('../test/idempotent.cc', LIBS = ['ots', 'freetype', 'z', 'm'], LIBPA TH='../src') 44 env.Program('../test/idempotent.cc', LIBS = ['ots', 'freetype', 'z', 'm'], LIBPA TH='../src')
44 env.Program('../test/perf.cc', LIBS = ['ots'], LIBPATH='../src') 45 env.Program('../test/perf.cc', LIBS = ['ots'], LIBPATH='../src')
45 46
46 # TODO(yusukes): better to use pkg-config freetype2 --libs 47 # TODO(yusukes): better to use pkg-config freetype2 --libs
47 env.Program('../test/side-by-side.cc', LIBS = ['ots', 'freetype', 'z', 'm'], LIB PATH = '../src') 48 env.Program('../test/side-by-side.cc', LIBS = ['ots', 'freetype', 'z', 'm'], LIB PATH = '../src')
48 env.Program('../test/validator-checker.cc', LIBS = ['ots', 'freetype', 'z', 'm'] , LIBPATH = '../src') 49 env.Program('../test/validator-checker.cc', LIBS = ['ots', 'freetype', 'z', 'm'] , LIBPATH = '../src')
OLDNEW
« no previous file with comments | « src/layout.cc ('k') | test/layout_common_table_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698