OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'ft2_dir': 'src', | 7 'ft2_dir': 'src', |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 16 matching lines...) Expand all Loading... |
27 '<(ft2_dir)/src/base/ftbbox.c', | 27 '<(ft2_dir)/src/base/ftbbox.c', |
28 '<(ft2_dir)/src/base/ftglyph.c', | 28 '<(ft2_dir)/src/base/ftglyph.c', |
29 | 29 |
30 '<(ft2_dir)/src/base/ftbdf.c', | 30 '<(ft2_dir)/src/base/ftbdf.c', |
31 '<(ft2_dir)/src/base/ftbitmap.c', | 31 '<(ft2_dir)/src/base/ftbitmap.c', |
32 '<(ft2_dir)/src/base/ftcid.c', | 32 '<(ft2_dir)/src/base/ftcid.c', |
33 '<(ft2_dir)/src/base/ftfstype.c', | 33 '<(ft2_dir)/src/base/ftfstype.c', |
34 '<(ft2_dir)/src/base/ftgasp.c', | 34 '<(ft2_dir)/src/base/ftgasp.c', |
35 '<(ft2_dir)/src/base/ftgxval.c', | 35 '<(ft2_dir)/src/base/ftgxval.c', |
36 '<(ft2_dir)/src/base/ftlcdfil.c', | 36 '<(ft2_dir)/src/base/ftlcdfil.c', |
| 37 '<(ft2_dir)/src/base/ftmm.c', |
37 '<(ft2_dir)/src/base/ftpfr.c', | 38 '<(ft2_dir)/src/base/ftpfr.c', |
38 '<(ft2_dir)/src/base/ftstroke.c', | 39 '<(ft2_dir)/src/base/ftstroke.c', |
39 '<(ft2_dir)/src/base/ftsynth.c', | 40 '<(ft2_dir)/src/base/ftsynth.c', |
40 '<(ft2_dir)/src/base/fttype1.c', | 41 '<(ft2_dir)/src/base/fttype1.c', |
41 '<(ft2_dir)/src/base/ftwinfnt.c', | 42 '<(ft2_dir)/src/base/ftwinfnt.c', |
42 '<(ft2_dir)/src/base/ftxf86.c', | 43 '<(ft2_dir)/src/base/ftxf86.c', |
43 | 44 |
44 '<(ft2_dir)/src/bdf/bdf.c', | 45 '<(ft2_dir)/src/bdf/bdf.c', |
45 '<(ft2_dir)/src/cff/cff.c', | 46 '<(ft2_dir)/src/cff/cff.c', |
46 '<(ft2_dir)/src/cid/type1cid.c', | 47 '<(ft2_dir)/src/cid/type1cid.c', |
(...skipping 14 matching lines...) Expand all Loading... |
61 | 62 |
62 '<(ft2_dir)/src/autofit/autofit.c', | 63 '<(ft2_dir)/src/autofit/autofit.c', |
63 '<(ft2_dir)/src/gzip/ftgzip.c', | 64 '<(ft2_dir)/src/gzip/ftgzip.c', |
64 '<(ft2_dir)/src/lzw/ftlzw.c', | 65 '<(ft2_dir)/src/lzw/ftlzw.c', |
65 ], | 66 ], |
66 'defines': [ | 67 'defines': [ |
67 'FT_CONFIG_OPTION_SYSTEM_ZLIB', | 68 'FT_CONFIG_OPTION_SYSTEM_ZLIB', |
68 'FT2_BUILD_LIBRARY', | 69 'FT2_BUILD_LIBRARY', |
69 'FT_CONFIG_CONFIG_H=<ftconfig.h>', # See comments in README.chromium. | 70 'FT_CONFIG_CONFIG_H=<ftconfig.h>', # See comments in README.chromium. |
70 'FT_CONFIG_MODULES_H=<ftmodule.h>', # See comments in README.chromium. | 71 'FT_CONFIG_MODULES_H=<ftmodule.h>', # See comments in README.chromium. |
71 'FT_CONFIG_OPTIONS_H=<ftoption.h>', # See comments in README.chromium. | |
72 ], | 72 ], |
73 'include_dirs': [ | 73 'include_dirs': [ |
74 'include', | 74 'include', |
75 '<(ft2_dir)/include', | 75 '<(ft2_dir)/include', |
76 ], | 76 ], |
77 'direct_dependent_settings': { | 77 'direct_dependent_settings': { |
78 'include_dirs': [ | 78 'include_dirs': [ |
79 'include', | 79 'include', |
80 '<(ft2_dir)/include', | 80 '<(ft2_dir)/include', |
81 ], | 81 ], |
82 }, | 82 }, |
83 'link_settings': { | 83 'link_settings': { |
84 'libraries': [ | 84 'libraries': [ |
85 '-lz', | 85 '-lz', |
86 ], | 86 ], |
87 }, | 87 }, |
88 }, | 88 }, |
89 ], # targets | 89 ], # targets |
90 } | 90 } |
OLD | NEW |