Home | History | Annotate | Download | only in harfbuzz-ng
      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
      3 # found in the LICENSE file.
      4 
      5 {
      6   'includes': [
      7     '../../build/win_precompile.gypi',
      8   ],
      9   'targets': [
     10     {
     11       'target_name': 'harfbuzz-ng',
     12       'type': 'static_library',
     13       'defines': [
     14         'HAVE_OT',
     15         'HAVE_ICU',
     16         'HB_NO_MT',
     17       ],
     18       'sources': [
     19         'src/hb-atomic-private.hh',
     20         'src/hb-blob.cc',
     21         'src/hb-blob.h',
     22         'src/hb-buffer-deserialize-json.hh',
     23         'src/hb-buffer-deserialize-text.hh',
     24         'src/hb-buffer-private.hh',
     25         'src/hb-buffer-serialize.cc',
     26         'src/hb-buffer.cc',
     27         'src/hb-buffer.h',
     28         'src/hb-cache-private.hh',
     29         'src/hb-common.cc',
     30         'src/hb-common.h',
     31         'src/hb-fallback-shape.cc',
     32         'src/hb-font-private.hh',
     33         'src/hb-font.cc',
     34         'src/hb-font.h',
     35         'src/hb-icu.cc',
     36         'src/hb-icu.h',
     37         'src/hb-mutex-private.hh',
     38         'src/hb-object-private.hh',
     39         'src/hb-open-file-private.hh',
     40         'src/hb-open-type-private.hh',
     41         'src/hb-ot-head-table.hh',
     42         'src/hb-ot-hhea-table.hh',
     43         'src/hb-ot-hmtx-table.hh',
     44         'src/hb-ot-layout-common-private.hh',
     45         'src/hb-ot-layout-gdef-table.hh',
     46         'src/hb-ot-layout-gpos-table.hh',
     47         'src/hb-ot-layout-gsub-table.hh',
     48         'src/hb-ot-layout-gsubgpos-private.hh',
     49         'src/hb-ot-layout-private.hh',
     50         'src/hb-ot-layout.cc',
     51         'src/hb-ot-layout.h',
     52         'src/hb-ot-map-private.hh',
     53         'src/hb-ot-map.cc',
     54         'src/hb-ot-maxp-table.hh',
     55         'src/hb-ot-name-table.hh',
     56         'src/hb-ot-shape-complex-arabic-fallback.hh',
     57         'src/hb-ot-shape-complex-arabic-table.hh',
     58         'src/hb-ot-shape-complex-arabic.cc',
     59         'src/hb-ot-shape-complex-default.cc',
     60         'src/hb-ot-shape-complex-indic-machine.hh',
     61         'src/hb-ot-shape-complex-indic-private.hh',
     62         'src/hb-ot-shape-complex-indic-table.cc',
     63         'src/hb-ot-shape-complex-indic.cc',
     64         'src/hb-ot-shape-complex-myanmar-machine.hh',
     65         'src/hb-ot-shape-complex-myanmar.cc',
     66         'src/hb-ot-shape-complex-private.hh',
     67         'src/hb-ot-shape-complex-sea-machine.hh',
     68         'src/hb-ot-shape-complex-sea.cc',
     69         'src/hb-ot-shape-complex-thai.cc',
     70         'src/hb-ot-shape-fallback-private.hh',
     71         'src/hb-ot-shape-fallback.cc',
     72         'src/hb-ot-shape-normalize-private.hh',
     73         'src/hb-ot-shape-normalize.cc',
     74         'src/hb-ot-shape-private.hh',
     75         'src/hb-ot-shape.cc',
     76         'src/hb-ot-tag.cc',
     77         'src/hb-ot-tag.h',
     78         'src/hb-ot.h',
     79         'src/hb-private.hh',
     80         'src/hb-set-private.hh',
     81         'src/hb-set.cc',
     82         'src/hb-set.h',
     83         'src/hb-shape-plan-private.hh',
     84         'src/hb-shape-plan.cc',
     85         'src/hb-shape-plan.h',
     86         'src/hb-shape.cc',
     87         'src/hb-shape.h',
     88         'src/hb-shaper-impl-private.hh',
     89         'src/hb-shaper-list.hh',
     90         'src/hb-shaper-private.hh',
     91         'src/hb-shaper.cc',
     92         'src/hb-tt-font.cc',
     93         'src/hb-unicode-private.hh',
     94         'src/hb-unicode.cc',
     95         'src/hb-unicode.h',
     96         'src/hb-utf-private.hh',
     97         'src/hb-version.h',
     98         'src/hb-warning.cc',
     99         'src/hb.h',
    100       ],
    101       'include_dirs': [
    102         'src',
    103       ],
    104       'direct_dependent_settings': {
    105         'include_dirs': [
    106           'src',
    107         ],
    108       },
    109       'dependencies': [
    110         '../../third_party/icu/icu.gyp:icuuc',
    111       ],
    112       'conditions': [
    113         ['clang==1', {
    114           'xcode_settings': {
    115             'WARNING_CFLAGS': [
    116               '-Wno-unused-value',
    117             ],
    118           },
    119           'cflags': [
    120             '-Wno-unused-value',
    121           ]
    122         }],
    123       ],
    124     },
    125   ],
    126 }
    127