OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 'target_name': 'harfbuzz', |
| 9 'type': '<(library)', |
| 10 'sources': [ |
| 11 'src/hb-blob-private.h', |
| 12 'src/hb-blob.c', |
| 13 'src/hb-blob.h', |
| 14 'src/hb-buffer-private.hh', |
| 15 'src/hb-buffer.cc', |
| 16 'src/hb-buffer.h', |
| 17 'src/hb-common.c', |
| 18 'src/hb-common.h', |
| 19 'src/hb-font-private.h', |
| 20 'src/hb-font.cc', |
| 21 'src/hb-font.h', |
| 22 'src/hb-ft.c', |
| 23 'src/hb-icu.c', |
| 24 'src/hb-language.c', |
| 25 'src/hb-language.h', |
| 26 'src/hb-object-private.h', |
| 27 'src/hb-open-file-private.hh', |
| 28 'src/hb-open-type-private.hh', |
| 29 'src/hb-ot-head-private.hh', |
| 30 'src/hb-ot-layout-common-private.hh', |
| 31 'src/hb-ot-layout-gdef-private.hh', |
| 32 'src/hb-ot-layout-gpos-private.hh', |
| 33 'src/hb-ot-layout-gsub-private.hh', |
| 34 'src/hb-ot-layout-gsubgpos-private.hh', |
| 35 'src/hb-ot-layout-private.hh', |
| 36 'src/hb-ot-layout.cc', |
| 37 'src/hb-ot-map-private.hh', |
| 38 'src/hb-ot-map.cc', |
| 39 'src/hb-ot-shape-complex-arabic-table.h', |
| 40 'src/hb-ot-shape-complex-arabic.cc', |
| 41 'src/hb-ot-shape-complex-private.hh', |
| 42 'src/hb-ot-shape-private.hh', |
| 43 'src/hb-ot-shape.cc', |
| 44 'src/hb-ot-tag.c', |
| 45 'src/hb-private.h', |
| 46 'src/hb-shape.cc', |
| 47 'src/hb-shape.h', |
| 48 'src/hb-unicode-private.h', |
| 49 'src/hb-unicode.c', |
| 50 'src/hb-unicode.h', |
| 51 'src/hb.h', |
| 52 ], |
| 53 'include_dirs': [ |
| 54 'src', |
| 55 ], |
| 56 'direct_dependent_settings': { |
| 57 'include_dirs': [ |
| 58 'src', |
| 59 ], |
| 60 }, |
| 61 'dependencies': [ |
| 62 '../../build/linux/system.gyp:freetype2', |
| 63 '../../third_party/icu/icu.gyp:icuuc', |
| 64 ], |
| 65 }, |
| 66 ], |
| 67 } |
| 68 |
| 69 # Local Variables: |
| 70 # tab-width:2 |
| 71 # indent-tabs-mode:nil |
| 72 # End: |
| 73 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |