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

Side by Side Diff: freetype.gyp

Issue 1159323004: Add BUILD.gn for third_party/freetype (Closed) Base URL: https://chromium.googlesource.com/chromium/src/third_party/freetype.git@master
Patch Set: Add BUILD.gn to README.chromium. 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 | « README.chromium ('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',
(...skipping 23 matching lines...) Expand all
34 'src/truetype/truetype.c', 34 'src/truetype/truetype.c',
35 'src/cff/cff.c', 35 'src/cff/cff.c',
36 'src/psnames/psnames.c', 36 'src/psnames/psnames.c',
37 'src/pshinter/pshinter.c', 37 'src/pshinter/pshinter.c',
38 ], 38 ],
39 'dependencies': [ 39 'dependencies': [
40 '../libpng/libpng.gyp:libpng', 40 '../libpng/libpng.gyp:libpng',
41 '../zlib/zlib.gyp:zlib', 41 '../zlib/zlib.gyp:zlib',
42 ], 42 ],
43 'include_dirs': [ 43 'include_dirs': [
44 'build',
45 'include', 44 'include',
46 ], 45 ],
47 'defines': [ 46 'defines': [
48 'FT2_BUILD_LIBRARY', 47 'FT2_BUILD_LIBRARY',
49 'DARWIN_NO_CARBON', 48 'DARWIN_NO_CARBON',
50 ], 49 ],
51 'direct_dependent_settings': { 50 'direct_dependent_settings': {
52 'include_dirs': [ 51 'include_dirs': [
53 '../../third_party/freetype/include', 52 '../../third_party/freetype/include',
54 ], 53 ],
55 }, 54 },
56 }, 55 },
57 ], 56 ],
58 }], 57 }],
59 ], 58 ],
60 } 59 }
OLDNEW
« no previous file with comments | « README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698