| 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/linux/pkg_config.gni") | 6 import("//build/config/linux/pkg_config.gni") |
| 7 | 7 |
| 8 # The GYP build supports system harfbuzz for non-official builds when using | 8 # The GYP build supports system harfbuzz for non-official builds when using |
| 9 # pangoft2 1.31.0 or greater (which pulls it in). | 9 # pangoft2 1.31.0 or greater (which pulls it in). |
| 10 # TODO(brettw) we can consider doing this as well, although the benefit is | 10 # TODO(brettw) we can consider doing this as well, although the benefit is |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "src/hb-fallback-shape.cc", | 64 "src/hb-fallback-shape.cc", |
| 65 "src/hb-font-private.hh", | 65 "src/hb-font-private.hh", |
| 66 "src/hb-font.cc", | 66 "src/hb-font.cc", |
| 67 "src/hb-font.h", | 67 "src/hb-font.h", |
| 68 "src/hb-icu.cc", | 68 "src/hb-icu.cc", |
| 69 "src/hb-icu.h", | 69 "src/hb-icu.h", |
| 70 "src/hb-mutex-private.hh", | 70 "src/hb-mutex-private.hh", |
| 71 "src/hb-object-private.hh", | 71 "src/hb-object-private.hh", |
| 72 "src/hb-open-file-private.hh", | 72 "src/hb-open-file-private.hh", |
| 73 "src/hb-open-type-private.hh", | 73 "src/hb-open-type-private.hh", |
| 74 "src/hb-ot-font.cc", |
| 75 "src/hb-ot-font.h", |
| 74 "src/hb-ot-head-table.hh", | 76 "src/hb-ot-head-table.hh", |
| 75 "src/hb-ot-hhea-table.hh", | 77 "src/hb-ot-hhea-table.hh", |
| 76 "src/hb-ot-hmtx-table.hh", | 78 "src/hb-ot-hmtx-table.hh", |
| 77 "src/hb-ot-layout-common-private.hh", | 79 "src/hb-ot-layout-common-private.hh", |
| 78 "src/hb-ot-layout-gdef-table.hh", | 80 "src/hb-ot-layout-gdef-table.hh", |
| 79 "src/hb-ot-layout-gpos-table.hh", | 81 "src/hb-ot-layout-gpos-table.hh", |
| 80 "src/hb-ot-layout-gsub-table.hh", | 82 "src/hb-ot-layout-gsub-table.hh", |
| 81 "src/hb-ot-layout-gsubgpos-private.hh", | 83 "src/hb-ot-layout-gsubgpos-private.hh", |
| 82 "src/hb-ot-layout-private.hh", | 84 "src/hb-ot-layout-private.hh", |
| 83 "src/hb-ot-layout.cc", | 85 "src/hb-ot-layout.cc", |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 } | 161 } |
| 160 if (is_mac) { | 162 if (is_mac) { |
| 161 sources += [ | 163 sources += [ |
| 162 "src/hb-coretext.cc", | 164 "src/hb-coretext.cc", |
| 163 "src/hb-coretext.h", | 165 "src/hb-coretext.h", |
| 164 ] | 166 ] |
| 165 defines += [ "HAVE_CORETEXT" ] | 167 defines += [ "HAVE_CORETEXT" ] |
| 166 } | 168 } |
| 167 } | 169 } |
| 168 } | 170 } |
| OLD | NEW |