OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # The GYP build supports system harfbuzz for non-official builds when using | 5 # The GYP build supports system harfbuzz for non-official builds when using |
6 # pangoft2 1.31.0 or greater (which pulls it in). | 6 # pangoft2 1.31.0 or greater (which pulls it in). |
7 # TODO(brettw) we can consider doing this as well, although the benefit is | 7 # TODO(brettw) we can consider doing this as well, although the benefit is |
8 # unclear and requires shelling out to a script to check the version. | 8 # unclear and requires shelling out to a script to check the version. |
9 # | 9 # |
10 # ChromeOS uses an up-to-date system one that we have control over, so we | 10 # ChromeOS uses an up-to-date system one that we have control over, so we |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
48 "src/hb-font.h", | 48 "src/hb-font.h", |
49 "src/hb-font-private.hh", | 49 "src/hb-font-private.hh", |
50 "src/hb.h", | 50 "src/hb.h", |
51 "src/hb-icu.cc", | 51 "src/hb-icu.cc", |
52 "src/hb-icu.h", | 52 "src/hb-icu.h", |
53 "src/hb-mutex-private.hh", | 53 "src/hb-mutex-private.hh", |
54 "src/hb-object-private.hh", | 54 "src/hb-object-private.hh", |
55 "src/hb-open-file-private.hh", | 55 "src/hb-open-file-private.hh", |
56 "src/hb-open-type-private.hh", | 56 "src/hb-open-type-private.hh", |
57 "src/hb-ot.h", | 57 "src/hb-ot.h", |
58 "src/hb-ot-cmap-table.hh", | |
59 "src/hb-ot-font.h", | |
bashi
2014/07/17 12:18:48
Do we really need this (at this moment)? In other
| |
60 "src/hb-ot-font.cc", | |
58 "src/hb-ot-head-table.hh", | 61 "src/hb-ot-head-table.hh", |
59 "src/hb-ot-hhea-table.hh", | 62 "src/hb-ot-hhea-table.hh", |
60 "src/hb-ot-hmtx-table.hh", | 63 "src/hb-ot-hmtx-table.hh", |
61 "src/hb-ot-layout.cc", | 64 "src/hb-ot-layout.cc", |
62 "src/hb-ot-layout-common-private.hh", | 65 "src/hb-ot-layout-common-private.hh", |
63 "src/hb-ot-layout-gdef-table.hh", | 66 "src/hb-ot-layout-gdef-table.hh", |
64 "src/hb-ot-layout-gpos-table.hh", | 67 "src/hb-ot-layout-gpos-table.hh", |
65 "src/hb-ot-layout-gsubgpos-private.hh", | 68 "src/hb-ot-layout-gsubgpos-private.hh", |
66 "src/hb-ot-layout-gsub-table.hh", | 69 "src/hb-ot-layout-gsub-table.hh", |
67 "src/hb-ot-layout.h", | 70 "src/hb-ot-layout.h", |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
144 } | 147 } |
145 if (is_mac) { | 148 if (is_mac) { |
146 sources += [ | 149 sources += [ |
147 "src/hb-coretext.cc", | 150 "src/hb-coretext.cc", |
148 "src/hb-coretext.h", | 151 "src/hb-coretext.h", |
149 ] | 152 ] |
150 defines += [ "HAVE_CORETEXT" ] | 153 defines += [ "HAVE_CORETEXT" ] |
151 } | 154 } |
152 } | 155 } |
153 } | 156 } |
OLD | NEW |