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

Side by Side Diff: freetype.gyp

Issue 1156023005: Add ftmm.c to FreeType build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src/third_party/freetype.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « Android.mk ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'conditions': [ 6 'conditions': [
7 [ 'OS == "android"', { 7 [ 'OS == "android"', {
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'ft2', 10 'target_name': 'ft2',
11 'type': 'static_library', 11 'type': 'static_library',
12 'toolsets': ['target'], 12 'toolsets': ['target'],
13 'sources': [ 13 'sources': [
14 # The following files are not sorted alphabetically, but in the 14 # The following files are not sorted alphabetically, but in the
15 # same order as in Android.mk to ease maintenance. 15 # same order as in Android.mk to ease maintenance.
16 'src/base/ftbbox.c', 16 'src/base/ftbbox.c',
17 'src/base/ftbitmap.c', 17 'src/base/ftbitmap.c',
18 'src/base/ftfstype.c', 18 'src/base/ftfstype.c',
19 'src/base/ftglyph.c', 19 'src/base/ftglyph.c',
20 'src/base/ftlcdfil.c', 20 'src/base/ftlcdfil.c',
21 'src/base/ftstroke.c', 21 'src/base/ftstroke.c',
22 'src/base/fttype1.c', 22 'src/base/fttype1.c',
23 'src/base/ftxf86.c', 23 'src/base/ftxf86.c',
24 'src/base/ftbase.c', 24 'src/base/ftbase.c',
25 'src/base/ftsystem.c', 25 'src/base/ftsystem.c',
26 'src/base/ftinit.c', 26 'src/base/ftinit.c',
27 'src/base/ftgasp.c', 27 'src/base/ftgasp.c',
28 'src/base/ftmm.c',
28 'src/gzip/ftgzip.c', 29 'src/gzip/ftgzip.c',
29 'src/raster/raster.c', 30 'src/raster/raster.c',
30 'src/sfnt/sfnt.c', 31 'src/sfnt/sfnt.c',
31 'src/smooth/smooth.c', 32 'src/smooth/smooth.c',
32 'src/autofit/autofit.c', 33 'src/autofit/autofit.c',
33 'src/truetype/truetype.c', 34 'src/truetype/truetype.c',
34 'src/cff/cff.c', 35 'src/cff/cff.c',
35 'src/psnames/psnames.c', 36 'src/psnames/psnames.c',
36 'src/pshinter/pshinter.c', 37 'src/pshinter/pshinter.c',
37 ], 38 ],
(...skipping 12 matching lines...) Expand all
50 'direct_dependent_settings': { 51 'direct_dependent_settings': {
51 'include_dirs': [ 52 'include_dirs': [
52 '../../third_party/freetype/include', 53 '../../third_party/freetype/include',
53 ], 54 ],
54 }, 55 },
55 }, 56 },
56 ], 57 ],
57 }], 58 }],
58 ], 59 ],
59 } 60 }
OLDNEW
« no previous file with comments | « Android.mk ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698