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

Side by Side Diff: third_party/freetype-android/freetype.gyp

Issue 1155743013: Move third_party/freetype DEPS to third_party/freetype-android/src (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix gyp build. 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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'conditions': [
7 [ 'OS == "android"', {
8 'targets': [
9 {
10 'target_name': 'ft2',
11 'type': 'static_library',
12 'toolsets': ['target'],
13 'sources': [
14 # The following files are not sorted alphabetically, but in the
15 # same order as in Android.mk to ease maintenance.
16 'src/src/base/ftbbox.c',
17 'src/src/base/ftbitmap.c',
18 'src/src/base/ftfstype.c',
19 'src/src/base/ftglyph.c',
20 'src/src/base/ftlcdfil.c',
21 'src/src/base/ftstroke.c',
22 'src/src/base/fttype1.c',
23 'src/src/base/ftxf86.c',
24 'src/src/base/ftbase.c',
25 'src/src/base/ftsystem.c',
26 'src/src/base/ftinit.c',
27 'src/src/base/ftgasp.c',
28 'src/src/base/ftmm.c',
29 'src/src/gzip/ftgzip.c',
30 'src/src/raster/raster.c',
31 'src/src/sfnt/sfnt.c',
32 'src/src/smooth/smooth.c',
33 'src/src/autofit/autofit.c',
34 'src/src/truetype/truetype.c',
35 'src/src/cff/cff.c',
36 'src/src/psnames/psnames.c',
37 'src/src/pshinter/pshinter.c',
38 ],
39 'dependencies': [
40 '../libpng/libpng.gyp:libpng',
41 '../zlib/zlib.gyp:zlib',
42 ],
43 'include_dirs': [
44 'src/include',
45 ],
46 'defines': [
47 'FT2_BUILD_LIBRARY',
48 'DARWIN_NO_CARBON',
49 ],
50 'direct_dependent_settings': {
51 'include_dirs': [
52 '../../third_party/freetype-android/src/include',
53 ],
54 },
55 },
56 ],
57 }],
58 ],
59 }
OLDNEW
« third_party/freetype-android/README.chromium ('K') | « third_party/freetype-android/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698