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

Side by Side Diff: gyp/freetype.gyp

Issue 2283903003: Expat target exports includes instead of FreeType. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 3 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 | « gyp/android_deps.gyp ('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 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # Target for building freetype. 5 # Target for building freetype.
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'freetype', 9 'target_name': 'freetype',
10 'type': 'none', 10 'type': 'none',
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 [ 'skia_android_framework', 56 [ 'skia_android_framework',
57 { 57 {
58 'direct_dependent_settings': { 58 'direct_dependent_settings': {
59 'defines': [ 59 'defines': [
60 # Android provides at least FreeType 2.4.0 60 # Android provides at least FreeType 2.4.0
61 'SK_FONTHOST_FREETYPE_RUNTIME_VERSION=0x020400', 61 'SK_FONTHOST_FREETYPE_RUNTIME_VERSION=0x020400',
62 'SK_CAN_USE_DLOPEN=0', 62 'SK_CAN_USE_DLOPEN=0',
63 ], 63 ],
64 }, 64 },
65 'include_dirs': [ 65 'include_dirs': [
66 'external/expat/lib',
67 'external/freetype/include', 66 'external/freetype/include',
68 ], 67 ],
69 'libraries': [ 68 'libraries': [
70 '-lft2', 69 '-lft2',
71 ], 70 ],
72 } 71 }
73 ], 72 ],
74 ], 73 ],
75 } 74 }
76 ], 75 ],
(...skipping 27 matching lines...) Expand all
104 }], 103 }],
105 [ 'skia_clang_build == 1', { 104 [ 'skia_clang_build == 1', {
106 'cflags':[ 105 'cflags':[
107 '-w', 106 '-w',
108 ], 107 ],
109 }], 108 }],
110 ], 109 ],
111 }, 110 },
112 ], 111 ],
113 } 112 }
OLDNEW
« no previous file with comments | « gyp/android_deps.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698