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

Side by Side Diff: third_party/harfbuzz-ng/harfbuzz.gyp

Issue 10510004: Roll harfbuzz-ng 3b8fd9c48f4bde368bf2d465c148b9743a9216ee (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 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 | « third_party/harfbuzz-ng/README.chromium ('k') | third_party/harfbuzz-ng/src/hb.h » ('j') | 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'includes': [ 6 'includes': [
7 '../../build/win_precompile.gypi', 7 '../../build/win_precompile.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'harfbuzz-ng', 11 'target_name': 'harfbuzz-ng',
12 'type': 'static_library', 12 'type': 'static_library',
13 'defines': [ 13 'defines': [
14 'HAVE_OT', 14 'HAVE_OT',
15 'HAVE_ICU', 15 'HAVE_ICU',
16 'HB_NO_MT',
16 ], 17 ],
17 'sources': [ 18 'sources': [
19 'src/hb-atomic-private.hh',
18 'src/hb-blob.cc', 20 'src/hb-blob.cc',
19 'src/hb-blob.h', 21 'src/hb-blob.h',
20 'src/hb-buffer-private.hh', 22 'src/hb-buffer-private.hh',
21 'src/hb-buffer.cc', 23 'src/hb-buffer.cc',
22 'src/hb-buffer.h', 24 'src/hb-buffer.h',
25 'src/hb-cache-private.hh',
23 'src/hb-common.cc', 26 'src/hb-common.cc',
24 'src/hb-common.h', 27 'src/hb-common.h',
25 'src/hb-fallback-shape-private.hh', 28 'src/hb-fallback-shape-private.hh',
26 'src/hb-fallback-shape.cc', 29 'src/hb-fallback-shape.cc',
27 'src/hb-font-private.hh', 30 'src/hb-font-private.hh',
28 'src/hb-font.cc', 31 'src/hb-font.cc',
29 'src/hb-font.h', 32 'src/hb-font.h',
30 'src/hb-glib.cc', 33 'src/hb-glib.cc',
31 'src/hb-glib.h', 34 'src/hb-glib.h',
32 'src/hb-gobject-enums.cc', 35 'src/hb-gobject-enums.cc',
(...skipping 16 matching lines...) Expand all
49 'src/hb-ot-layout-private.hh', 52 'src/hb-ot-layout-private.hh',
50 'src/hb-ot-layout.cc', 53 'src/hb-ot-layout.cc',
51 'src/hb-ot-layout.h', 54 'src/hb-ot-layout.h',
52 'src/hb-ot-map-private.hh', 55 'src/hb-ot-map-private.hh',
53 'src/hb-ot-map.cc', 56 'src/hb-ot-map.cc',
54 'src/hb-ot-maxp-table.hh', 57 'src/hb-ot-maxp-table.hh',
55 'src/hb-ot-name-table.hh', 58 'src/hb-ot-name-table.hh',
56 'src/hb-ot-shape-complex-arabic-table.hh', 59 'src/hb-ot-shape-complex-arabic-table.hh',
57 'src/hb-ot-shape-complex-arabic.cc', 60 'src/hb-ot-shape-complex-arabic.cc',
58 'src/hb-ot-shape-complex-indic-machine.hh', 61 'src/hb-ot-shape-complex-indic-machine.hh',
62 'src/hb-ot-shape-complex-indic-private.hh',
59 'src/hb-ot-shape-complex-indic-table.hh', 63 'src/hb-ot-shape-complex-indic-table.hh',
60 'src/hb-ot-shape-complex-indic.cc', 64 'src/hb-ot-shape-complex-indic.cc',
61 'src/hb-ot-shape-complex-misc.cc', 65 'src/hb-ot-shape-complex-misc.cc',
62 'src/hb-ot-shape-complex-private.hh', 66 'src/hb-ot-shape-complex-private.hh',
63 'src/hb-ot-shape-normalize.cc', 67 'src/hb-ot-shape-normalize.cc',
68 'src/hb-ot-shape-normalize-private.hh',
64 'src/hb-ot-shape-private.hh', 69 'src/hb-ot-shape-private.hh',
65 'src/hb-ot-shape.cc', 70 'src/hb-ot-shape.cc',
66 'src/hb-ot-shape.h',
67 'src/hb-ot-tag.cc', 71 'src/hb-ot-tag.cc',
68 'src/hb-ot-tag.h', 72 'src/hb-ot-tag.h',
69 'src/hb-ot.h', 73 'src/hb-ot.h',
70 'src/hb-private.hh', 74 'src/hb-private.hh',
75 'src/hb-set.cc',
76 'src/hb-set-private.hh',
71 'src/hb-shape.cc', 77 'src/hb-shape.cc',
72 'src/hb-shape.h', 78 'src/hb-shape.h',
73 'src/hb-tt-font.cc', 79 'src/hb-tt-font.cc',
74 'src/hb-unicode-private.hh', 80 'src/hb-unicode-private.hh',
75 'src/hb-unicode.cc', 81 'src/hb-unicode.cc',
76 'src/hb-unicode.h', 82 'src/hb-unicode.h',
77 'src/hb-version.h', 83 'src/hb-version.h',
84 'src/hb-warning.cc',
78 'src/hb.h', 85 'src/hb.h',
79 ], 86 ],
80 'sources/': [ 87 'sources/': [
81 ['exclude', 'src/hb-glib\\.(cc|h)$'], 88 ['exclude', 'src/hb-glib\\.(cc|h)$'],
82 ['exclude', 'src/hb-gobject.*\\.(cc|h)$'], 89 ['exclude', 'src/hb-gobject.*\\.(cc|h)$'],
83 ], 90 ],
84 'include_dirs': [ 91 'include_dirs': [
85 'src', 92 'src',
86 ], 93 ],
87 'direct_dependent_settings': { 94 'direct_dependent_settings': {
(...skipping 14 matching lines...) Expand all
102 ['include', 'src/hb-gobject.*\\.(cc|h)$'], 109 ['include', 'src/hb-gobject.*\\.(cc|h)$'],
103 ], 110 ],
104 'dependencies': [ 111 'dependencies': [
105 '../../base/base.gyp:base', 112 '../../base/base.gyp:base',
106 ], 113 ],
107 }], 114 }],
108 ], 115 ],
109 }, 116 },
110 ], 117 ],
111 } 118 }
OLDNEW
« no previous file with comments | « third_party/harfbuzz-ng/README.chromium ('k') | third_party/harfbuzz-ng/src/hb.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698